diff options
author | Paul Gilbert | 2016-03-18 23:36:54 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-03-18 23:36:54 -0400 |
commit | abb9a549c86b9c83925cd41f02b27e3e88162b9b (patch) | |
tree | 642fb75d966b3ebceef26c7f476149babeca05fc /engines/titanic | |
parent | c864deee1cdafdfd9201af3706dafff644e39908 (diff) | |
download | scummvm-rg350-abb9a549c86b9c83925cd41f02b27e3e88162b9b.tar.gz scummvm-rg350-abb9a549c86b9c83925cd41f02b27e3e88162b9b.tar.bz2 scummvm-rg350-abb9a549c86b9c83925cd41f02b27e3e88162b9b.zip |
TITANIC: Enable event handlng
Diffstat (limited to 'engines/titanic')
-rw-r--r-- | engines/titanic/main_game_window.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/titanic/main_game_window.cpp b/engines/titanic/main_game_window.cpp index 429991dab7..a6a5dcabf5 100644 --- a/engines/titanic/main_game_window.cpp +++ b/engines/titanic/main_game_window.cpp @@ -55,8 +55,10 @@ void CMainGameWindow::applicationStarting() { // Set the video mode CScreenManager *screenManager = CScreenManager::setCurrent(); screenManager->setMode(640, 480, 16, 1, true); + _inputAllowed = true; + + // TODO: Remove initial background and palette - // TODO: Clear surfaces // Create game view and manager _gameView = new CSTGameView(this); |