aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/worldofxeen
diff options
context:
space:
mode:
authorPaul Gilbert2014-12-30 10:22:05 -1000
committerPaul Gilbert2014-12-30 10:22:05 -1000
commit9d6de4da652b2494d37756e9d12f944cddcf18c8 (patch)
treea8a8165f9936a3a9d331ead65a3ebd9a3b5b7725 /engines/xeen/worldofxeen
parent6a71a9f4d49c20bcebff4b91ccfbfa46e4775f10 (diff)
downloadscummvm-rg350-9d6de4da652b2494d37756e9d12f944cddcf18c8.tar.gz
scummvm-rg350-9d6de4da652b2494d37756e9d12f944cddcf18c8.tar.bz2
scummvm-rg350-9d6de4da652b2494d37756e9d12f944cddcf18c8.zip
XEEN: Implemented cursor display
Diffstat (limited to 'engines/xeen/worldofxeen')
-rw-r--r--engines/xeen/worldofxeen/worldofxeen_game.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/engines/xeen/worldofxeen/worldofxeen_game.cpp b/engines/xeen/worldofxeen/worldofxeen_game.cpp
index dba5612e29..8057331250 100644
--- a/engines/xeen/worldofxeen/worldofxeen_game.cpp
+++ b/engines/xeen/worldofxeen/worldofxeen_game.cpp
@@ -30,7 +30,15 @@ WorldOfXeenEngine::WorldOfXeenEngine(OSystem *syst, const XeenGameDescription *g
}
void WorldOfXeenEngine::playGame () {
+ _screen->loadPalette("mm4.pal");
+ _screen->fadeIn(4);
+
//darkSideIntro();
+ _events->setCursor(0);
+ _events->showCursor();
+ while (!shouldQuit()) {
+ _events->pollEventsAndWait();
+ }
}
} // End of namespace Xeen