aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeeraj Kumar2010-07-07 20:40:54 +0000
committerNeeraj Kumar2010-07-07 20:40:54 +0000
commit71f0f1b25164dcfb8793cbd28f158605a8dc70f4 (patch)
tree6ecd0aecc44be4ed4f7219d3882aa48edcc06833
parent00fc80b8d59cacdc93a71e08cb8240392f245e34 (diff)
downloadscummvm-rg350-71f0f1b25164dcfb8793cbd28f158605a8dc70f4.tar.gz
scummvm-rg350-71f0f1b25164dcfb8793cbd28f158605a8dc70f4.tar.bz2
scummvm-rg350-71f0f1b25164dcfb8793cbd28f158605a8dc70f4.zip
commented out rotation as of now, avoids 6s delay which shows blank
svn-id: r50740
-rw-r--r--engines/testbed/graphics.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/testbed/graphics.cpp b/engines/testbed/graphics.cpp
index 46b1b0e4e4..ee95fce08d 100644
--- a/engines/testbed/graphics.cpp
+++ b/engines/testbed/graphics.cpp
@@ -814,8 +814,9 @@ bool GFXtests::paletteRotation() {
while (toRotate--) {
g_system->updateScreen();
- g_system->delayMillis(600);
+ // XXX: disabling rotations as of now, as it makes 6s delay (will fix it tommorrow)
// FIXME : fix rotation
+ // g_system->delayMillis(600);
// rotatePalette(&palette[8], 254);
// g_system->setPalette(palette, 0, 256);
}