aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Brown2002-10-20 12:18:57 +0000
committerJames Brown2002-10-20 12:18:57 +0000
commit3a507cbb9290c2ca3178f361f353dc47d4e4797b (patch)
tree87c89224bfb8cfa0a3cc4a0cad8cf2ae0bbc5b31
parentec158216f7b92ce76712f419f4b7fca47d29ebb6 (diff)
downloadscummvm-rg350-3a507cbb9290c2ca3178f361f353dc47d4e4797b.tar.gz
scummvm-rg350-3a507cbb9290c2ca3178f361f353dc47d4e4797b.tar.bz2
scummvm-rg350-3a507cbb9290c2ca3178f361f353dc47d4e4797b.zip
Remove some obsolete fixme's
svn-id: r5196
-rw-r--r--scumm/gfx.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp
index 7fe9c68ae5..39dce0d9b4 100644
--- a/scumm/gfx.cpp
+++ b/scumm/gfx.cpp
@@ -37,19 +37,19 @@ void Scumm::getGraphicsPerformance()
int i;
for (i = 10; i != 0; i--) {
- initScreens(0, 0, _realWidth, _realHeight); //ender
+ initScreens(0, 0, _realWidth, _realHeight);
}
- if (!(_features & GF_SMALL_HEADER)) /* FIXME TEST: Enders Zak fix */
- _vars[VAR_PERFORMANCE_1] = 0; //_scummTimer;
+ if (!(_features & GF_SMALL_HEADER)) // Variable is reserved for game scripts in earlier games
+ _vars[VAR_PERFORMANCE_1] = 0;
for (i = 10; i != 0; i--) {
setDirtyRange(0, 0, _realHeight); //ender
drawDirtyScreenParts();
}
- if (!(_features & GF_SMALL_HEADER)) /* FIXME TEST: Enders Zak fix */
- _vars[VAR_PERFORMANCE_2] = 0; //_scummTimer;
+ if (!(_features & GF_SMALL_HEADER)) // Variable is reserved for game scripts in earlier games
+ _vars[VAR_PERFORMANCE_2] = 0;
if (_gameId == GID_DIG)
initScreens(0, 0, _realWidth, _realHeight);