aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTarek Soliman2012-07-14 23:42:28 -0500
committerTarek Soliman2012-07-15 00:02:58 -0500
commit6abb3501b50101760885efaf4a9721beadb18052 (patch)
tree41da2fb4893416a6ea45b652ec28006394ba0445
parentaa8dec9a722e1b85374a215cba9a7066040a5e6e (diff)
downloadscummvm-rg350-6abb3501b50101760885efaf4a9721beadb18052.tar.gz
scummvm-rg350-6abb3501b50101760885efaf4a9721beadb18052.tar.bz2
scummvm-rg350-6abb3501b50101760885efaf4a9721beadb18052.zip
MAEMO: Set defaults for fullscreen and aspect ratio correction
New installs now have fullscreen and aspect ratio correction on by default
-rw-r--r--backends/platform/maemo/maemo.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/backends/platform/maemo/maemo.cpp b/backends/platform/maemo/maemo.cpp
index eb9b144ab2..61fe56e816 100644
--- a/backends/platform/maemo/maemo.cpp
+++ b/backends/platform/maemo/maemo.cpp
@@ -84,6 +84,10 @@ static void registerDefaultKeyBindings(Common::KeymapperDefaultBindings *_keymap
#endif
void OSystem_SDL_Maemo::initBackend() {
+
+ ConfMan.registerDefault("fullscreen", true);
+ ConfMan.registerDefault("aspect_ratio", true);
+
// Create the events manager
if (_eventSource == 0)
_eventSource = new MaemoSdlEventSource();