aboutsummaryrefslogtreecommitdiff
path: root/engines/testbed/graphics.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/testbed/graphics.cpp')
-rw-r--r--engines/testbed/graphics.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/engines/testbed/graphics.cpp b/engines/testbed/graphics.cpp
index 44d2b00cd0..821237b945 100644
--- a/engines/testbed/graphics.cpp
+++ b/engines/testbed/graphics.cpp
@@ -61,7 +61,7 @@ GFXTestSuite::GFXTestSuite() {
// Mouse Layer tests (Palettes and movements)
addTest("PalettizedCursors", &GFXtests::palettizedCursors);
- // FIXME: need to fix it
+ // FIXME: Scaled cursor crsh with odd dimmensions
addTest("ScaledCursors", &GFXtests::scaledCursors);
// Effects
@@ -471,8 +471,8 @@ bool GFXtests::palettizedCursors() {
}
Testsuite::clearScreen();
- // Done with cursors
- CursorMan.popAllCursors();
+ // Done with cursors, make them invisible, any other test the could simply make it visible
+ CursorMan.showMouse(false);
return passed;
}
@@ -609,9 +609,8 @@ bool GFXtests::scaledCursors() {
return false;
}
- // Done with cursors
- CursorMan.popAllCursors();
-
+ // Done with cursors, Make them invisible, any other test may enable and use it.
+ CursorMan.showMouse(false);
Testsuite::clearScreen();
return true;
}