[Scummvm-cvs-logs] SF.net SVN: scummvm: [28670] scummvm/trunk/engines/gob/game_v1.cpp
drmccoy at users.sourceforge.net
drmccoy at users.sourceforge.net
Sun Aug 19 22:31:48 CEST 2007
Revision: 28670
http://scummvm.svn.sourceforge.net/scummvm/?rev=28670&view=rev
Author: drmccoy
Date: 2007-08-19 13:31:48 -0700 (Sun, 19 Aug 2007)
Log Message:
-----------
Small correction
Modified Paths:
--------------
scummvm/trunk/engines/gob/game_v1.cpp
Modified: scummvm/trunk/engines/gob/game_v1.cpp
===================================================================
--- scummvm/trunk/engines/gob/game_v1.cpp 2007-08-19 20:31:15 UTC (rev 28669)
+++ scummvm/trunk/engines/gob/game_v1.cpp 2007-08-19 20:31:48 UTC (rev 28670)
@@ -397,9 +397,9 @@
// Additionally, I added a 'deltaTime == -1' check there, since
// when this function is called with deltaTime == -1 in inputArea,
// and the return value is then discarded.
- if (deltaTime < 0 && !firstIteration) {
+ if (deltaTime < 0) {
uint32 curtime = _vm->_util->getTimeKey();
- if ((deltaTime == -1) || ((curtime + deltaTime) > timeKey)) {
+ if ((deltaTime == -1) || (((curtime + deltaTime) > timeKey) && !firstIteration)) {
if (pResId != 0)
*pResId = 0;
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