[Scummvm-git-logs] scummvm master -> e937be4ccd97418270beafea599730de21e4b955

aquadran noreply at scummvm.org
Sun Sep 14 18:06:02 UTC 2025


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .

Summary:
e937be4ccd WINTERMUTE: Fixed compilation


Commit: e937be4ccd97418270beafea599730de21e4b955
    https://github.com/scummvm/scummvm/commit/e937be4ccd97418270beafea599730de21e4b955
Author: Paweł Kołodziejski (aquadran at gmail.com)
Date: 2025-09-14T20:05:56+02:00

Commit Message:
WINTERMUTE: Fixed compilation

Changed paths:
    engines/wintermute/ad/ad_response_box.cpp


diff --git a/engines/wintermute/ad/ad_response_box.cpp b/engines/wintermute/ad/ad_response_box.cpp
index 8a8e0b62d56..1aa65b2eea6 100644
--- a/engines/wintermute/ad/ad_response_box.cpp
+++ b/engines/wintermute/ad/ad_response_box.cpp
@@ -191,7 +191,7 @@ bool AdResponseBox::createButtons() {
 
 			// make the responses touchable
 			if (_game->_touchInterface) {
-				btn->_height = MAX(btn->_height, 50);
+				btn->_height = MAX<int32>(btn->_height, 50);
 			}
 
 			//btn->setListener(this, btn, _responses[i]->_id);




More information about the Scummvm-git-logs mailing list