[Scummvm-cvs-logs] scummvm master -> c1e39b8bd6c6e8e1eaf3142e7581c249317bc13b

Strangerke Strangerke at scummvm.org
Wed Jun 8 08:12:01 CEST 2016


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:
c1e39b8bd6 GNAP: (Hopefully) fix a FCC warning


Commit: c1e39b8bd6c6e8e1eaf3142e7581c249317bc13b
    https://github.com/scummvm/scummvm/commit/c1e39b8bd6c6e8e1eaf3142e7581c249317bc13b
Author: Strangerke (strangerke at scummvm.org)
Date: 2016-06-08T08:03:38+02:00

Commit Message:
GNAP: (Hopefully) fix a FCC warning

Changed paths:
    engines/gnap/gamesys.cpp



diff --git a/engines/gnap/gamesys.cpp b/engines/gnap/gamesys.cpp
index 11ef6fd..08a4af3 100644
--- a/engines/gnap/gamesys.cpp
+++ b/engines/gnap/gamesys.cpp
@@ -1141,7 +1141,7 @@ void GameSys::fatUpdateFrame() {
 				gfxItem->_currFrame._duration = 0;
 				gfxItem->_currFrame._isScaled = false;
 				gfxItem->_currFrame._rect = _newSpriteDrawItems[k]._rect;
-				gfxItem->_currFrame._spriteId = _newSpriteDrawItems[k]._surface ? 0xCAFEBABE : -1;// TODO
+				gfxItem->_currFrame._spriteId = _newSpriteDrawItems[k]._surface ? (int32)0xCAFEBABE : -1;// TODO
 				gfxItem->_currFrame._soundId = -1;
 				_animationsDone = false;
 			}






More information about the Scummvm-git-logs mailing list