diff options
-rw-r--r-- | engines/hopkins/hopkins.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/engines/hopkins/hopkins.cpp b/engines/hopkins/hopkins.cpp index 0dd1fbc03b..2fc9a3b007 100644 --- a/engines/hopkins/hopkins.cpp +++ b/engines/hopkins/hopkins.cpp @@ -470,6 +470,13 @@ LABEL_128: } */ + // Stub event loop + Common::Event evt; + while (!g_system->getEventManager()->shouldQuit()) { + while (g_system->getEventManager()->pollEvent(evt)) + ; + } + return Common::kNoError; } |