diff options
| author | Neeraj Kumar | 2010-06-08 20:24:54 +0000 | 
|---|---|---|
| committer | Neeraj Kumar | 2010-06-08 20:24:54 +0000 | 
| commit | 52cf6e4caa04f996bc7f4f78a464564db39de480 (patch) | |
| tree | fa92a0b2a57aaa270f54c8c8c4da76db5383a8a0 /engines/testbed/graphics.cpp | |
| parent | 207a5e0779de9f0002b0b1984bde90ce6597e1f2 (diff) | |
| download | scummvm-rg350-52cf6e4caa04f996bc7f4f78a464564db39de480.tar.gz scummvm-rg350-52cf6e4caa04f996bc7f4f78a464564db39de480.tar.bz2 scummvm-rg350-52cf6e4caa04f996bc7f4f78a464564db39de480.zip  | |
added working test for palettized cursors, tests mouse events as well
svn-id: r49516
Diffstat (limited to 'engines/testbed/graphics.cpp')
| -rw-r--r-- | engines/testbed/graphics.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/testbed/graphics.cpp b/engines/testbed/graphics.cpp index ea1c1b1130..c4701982c6 100644 --- a/engines/testbed/graphics.cpp +++ b/engines/testbed/graphics.cpp @@ -13,10 +13,10 @@ GFXTestSuite::GFXTestSuite() {  	g_system->grabPalette(_palette, 0, 3);  	// Add tests here -//	addTest("FullScreenMode", &testFullScreenMode); -//	addTest("AspectRatio", &testAspectRatio); +	addTest("FullScreenMode", &testFullScreenMode); +	addTest("AspectRatio", &testAspectRatio);  	addTest("PalettizedCursors", &testPalettizedCursors); -//	addTest("BlitBitmaps", &testCopyRectToScreen); +	addTest("BlitBitmaps", &testCopyRectToScreen);  }  const char *GFXTestSuite::getName() {  | 
