[Scummvm-cvs-logs] SF.net SVN: scummvm: [27782] scummvm/branches/branch-0-10-0/engines/touche/ ui.cpp
eriktorbjorn at users.sourceforge.net
eriktorbjorn at users.sourceforge.net
Sat Jun 30 10:28:13 CEST 2007
Revision: 27782
http://scummvm.svn.sourceforge.net/scummvm/?rev=27782&view=rev
Author: eriktorbjorn
Date: 2007-06-30 01:28:13 -0700 (Sat, 30 Jun 2007)
Log Message:
-----------
Backported fix for bug #1745090 ("TOUCHE: Glitch in the menu").
Modified Paths:
--------------
scummvm/branches/branch-0-10-0/engines/touche/ui.cpp
Modified: scummvm/branches/branch-0-10-0/engines/touche/ui.cpp
===================================================================
--- scummvm/branches/branch-0-10-0/engines/touche/ui.cpp 2007-06-30 08:24:36 UTC (rev 27781)
+++ scummvm/branches/branch-0-10-0/engines/touche/ui.cpp 2007-06-30 08:28:13 UTC (rev 27782)
@@ -381,6 +381,11 @@
}
}
}
+ if (doRedraw) {
+ redrawMenu(&menuData);
+ updateScreenArea(90, 102, 460, 196);
+ doRedraw = false;
+ }
Common::Event event;
while (_eventMan->pollEvent(event)) {
const Button *button = 0;
@@ -419,11 +424,6 @@
break;
}
}
- if (doRedraw) {
- redrawMenu(&menuData);
- updateScreenArea(90, 102, 460, 196);
- doRedraw = false;
- }
_system->updateScreen();
_system->delayMillis(10);
}
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