[Scummvm-git-logs] scummvm master -> 0ba70c14025c77896ff8925a9393e68fbfcf4dd7
bluegr
noreply at scummvm.org
Wed Sep 11 07:39:01 UTC 2024
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
0ba70c1402 QDENGINE: Fix compilation under Windows
Commit: 0ba70c14025c77896ff8925a9393e68fbfcf4dd7
https://github.com/scummvm/scummvm/commit/0ba70c14025c77896ff8925a9393e68fbfcf4dd7
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2024-09-11T10:38:44+03:00
Commit Message:
QDENGINE: Fix compilation under Windows
_shveikIsMoving is treated as an integer, but its type was set to bool
Changed paths:
engines/qdengine/minigames/inv_popup.h
diff --git a/engines/qdengine/minigames/inv_popup.h b/engines/qdengine/minigames/inv_popup.h
index b69a83dbf35..2970bd3324a 100644
--- a/engines/qdengine/minigames/inv_popup.h
+++ b/engines/qdengine/minigames/inv_popup.h
@@ -350,7 +350,7 @@ private:
mgVect2i _invDescPos;
bool _someFlag = false;
int _direction = 0;
- bool _shveikIsMoving = false;
+ int _shveikIsMoving = 0;
float _time = 0;
int _timeout = 0;
mgVect3f _oldShveikPos;
More information about the Scummvm-git-logs
mailing list