[Scummvm-cvs-logs] scummvm master -> 83fcab050c2ab45e1c7887134fe3ab054b9789df
Strangerke
Strangerke at scummvm.org
Thu Feb 25 22:22:31 CET 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:
83fcab050c CGE2: Fix a couple of boolean values
Commit: 83fcab050c2ab45e1c7887134fe3ab054b9789df
https://github.com/scummvm/scummvm/commit/83fcab050c2ab45e1c7887134fe3ab054b9789df
Author: Strangerke (strangerke at scummvm.org)
Date: 2016-02-25T22:15:32+01:00
Commit Message:
CGE2: Fix a couple of boolean values
Changed paths:
engines/cge2/vga13h.cpp
diff --git a/engines/cge2/vga13h.cpp b/engines/cge2/vga13h.cpp
index eb111c3..54f5c00 100644
--- a/engines/cge2/vga13h.cpp
+++ b/engines/cge2/vga13h.cpp
@@ -141,7 +141,7 @@ Sprite::Sprite(CGE2Engine *vm)
memset(_actionCtrl, 0, sizeof(_actionCtrl));
memset(_file, 0, sizeof(_file));
memset(&_flags, 0, sizeof(_flags));
- _flags._frnt = 1;
+ _flags._frnt = true;
}
Sprite::Sprite(CGE2Engine *vm, BitmapPtr shpP, int cnt)
@@ -152,7 +152,7 @@ Sprite::Sprite(CGE2Engine *vm, BitmapPtr shpP, int cnt)
memset(_actionCtrl, 0, sizeof(_actionCtrl));
memset(_file, 0, sizeof(_file));
memset(&_flags, 0, sizeof(_flags));
- _flags._frnt = 1;
+ _flags._frnt = true;
setShapeList(shpP, cnt);
}
More information about the Scummvm-git-logs
mailing list