diff options
author | Jonathan Gray | 2003-10-09 11:33:34 +0000 |
---|---|---|
committer | Jonathan Gray | 2003-10-09 11:33:34 +0000 |
commit | e53923eedac8db01f32bf106cb523a747e898780 (patch) | |
tree | b3be8549e63539ec9cae58340e8052c89197c8f0 /base | |
parent | 02b132b31c78fac0afc8b9eff266d42223097cd3 (diff) | |
download | scummvm-rg350-e53923eedac8db01f32bf106cb523a747e898780.tar.gz scummvm-rg350-e53923eedac8db01f32bf106cb523a747e898780.tar.bz2 scummvm-rg350-e53923eedac8db01f32bf106cb523a747e898780.zip |
give this more chance of working properly
svn-id: r10697
Diffstat (limited to 'base')
-rw-r--r-- | base/gameDetector.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/gameDetector.cpp b/base/gameDetector.cpp index 6455e353aa..e5884a55a3 100644 --- a/base/gameDetector.cpp +++ b/base/gameDetector.cpp @@ -664,7 +664,7 @@ OSystem *GameDetector::createSystem() { return OSystem_PALMOS_create(_gfx_mode, ConfMan.getBool("fullscreen")); #else /* SDL is the default driver for now */ - return OSystem_SDL_create(_gfx_mode, ConfMan.getBool("fullscreen"), ConfMan.getBool("aspect_ratio"), ConfMan.getBool("joystick_num")); + return OSystem_SDL_create(_gfx_mode, ConfMan.getBool("fullscreen"), ConfMan.getBool("aspect_ratio"), ConfMan.getInt("joystick_num")); #endif } |