diff options
Diffstat (limited to 'base/engine.cpp')
-rw-r--r-- | base/engine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/engine.cpp b/base/engine.cpp index a39ab3a09e..50bccb4746 100644 --- a/base/engine.cpp +++ b/base/engine.cpp @@ -38,7 +38,7 @@ Engine::Engine(GameDetector *detector, OSystem *syst) _mixer = detector->createMixer(); _timer = g_timer; - + // Set default file directory File::setDefaultDirectory(_gameDataPath); } @@ -121,7 +121,7 @@ void NORETURN CDECL error(const char *s, ...) { // Finally exit. quit() will terminate the program if g_system iss present if (g_system) g_system->quit(); - + exit(1); } |