mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
TITANIC: Added main game event loop
This commit is contained in:
parent
819b773491
commit
b57805bd4b
@ -87,7 +87,20 @@ void TitanicEngine::deinitialize() {
|
||||
Common::Error TitanicEngine::run() {
|
||||
initialize();
|
||||
|
||||
// Main event loop
|
||||
while (!shouldQuit()) {
|
||||
processEvents();
|
||||
g_system->delayMillis(5);
|
||||
}
|
||||
|
||||
deinitialize();
|
||||
return Common::kNoError;
|
||||
}
|
||||
|
||||
void TitanicEngine::processEvents() {
|
||||
Common::Event evt;
|
||||
g_system->getEventManager()->pollEvent(evt);
|
||||
|
||||
}
|
||||
|
||||
} // End of namespace Titanic
|
||||
|
@ -80,6 +80,11 @@ private:
|
||||
* Handles game deinitialization
|
||||
*/
|
||||
void deinitialize();
|
||||
|
||||
/**
|
||||
* Processes pending events
|
||||
*/
|
||||
void processEvents();
|
||||
protected:
|
||||
const TitanicGameDescription *_gameDescription;
|
||||
int _loadSaveSlot;
|
||||
|
Loading…
x
Reference in New Issue
Block a user