diff options
-rw-r--r-- | engines/tinsel/tinsel.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/tinsel/tinsel.cpp b/engines/tinsel/tinsel.cpp index bb6ed99138..049870a20e 100644 --- a/engines/tinsel/tinsel.cpp +++ b/engines/tinsel/tinsel.cpp @@ -80,6 +80,7 @@ namespace Tinsel { // In BG.CPP extern void SetDoFadeIn(bool tf); extern void DropBackground(); +extern BACKGND *pCurBgnd; // In CURSOR.CPP extern void CursorProcess(CORO_PARAM, const void *); @@ -1033,6 +1034,9 @@ Common::Error TinselEngine::run() { // Write configuration _vm->_config->writeToDisk(); + EndScene(); + pCurBgnd = NULL; + return Common::kNoError; } |