[Scummvm-cvs-logs] SF.net SVN: scummvm: [22215] scummvm/trunk/engines/simon
kirben at users.sourceforge.net
kirben at users.sourceforge.net
Sat Apr 29 05:30:04 CEST 2006
Revision: 22215
Author: kirben
Date: 2006-04-29 05:29:21 -0700 (Sat, 29 Apr 2006)
ViewCVS: http://svn.sourceforge.net/scummvm/?rev=22215&view=rev
Log Message:
-----------
Minor cleanup
Modified Paths:
--------------
scummvm/trunk/engines/simon/simon.cpp
scummvm/trunk/engines/simon/vga.cpp
Modified: scummvm/trunk/engines/simon/simon.cpp
===================================================================
--- scummvm/trunk/engines/simon/simon.cpp 2006-04-29 12:25:15 UTC (rev 22214)
+++ scummvm/trunk/engines/simon/simon.cpp 2006-04-29 12:29:21 UTC (rev 22215)
@@ -2517,7 +2517,7 @@
void SimonEngine::skipSpeech() {
_sound->stopVoice();
- if (getBitFlag(28) == false) {
+ if (!getBitFlag(28)) {
setBitFlag(14, true);
if (getGameType() == GType_FF) {
_variableArray[103] = 5;
Modified: scummvm/trunk/engines/simon/vga.cpp
===================================================================
--- scummvm/trunk/engines/simon/vga.cpp 2006-04-29 12:25:15 UTC (rev 22214)
+++ scummvm/trunk/engines/simon/vga.cpp 2006-04-29 12:29:21 UTC (rev 22215)
@@ -971,7 +971,7 @@
if (state->flags & kDFMasked) {
- if (getBitFlag(81) == false) {
+ if (!getBitFlag(81)) {
if (state->x > _feebleRect.right)
return;
if (state->y > _feebleRect.bottom)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list