aboutsummaryrefslogtreecommitdiff
path: root/backends/platform
diff options
context:
space:
mode:
authorTarek Soliman2012-02-15 17:56:09 -0600
committerTarek Soliman2012-02-15 17:56:09 -0600
commitb6e5e4fe1e5501b9c196ea3b8c0eb21f8854ce55 (patch)
tree64e0904a6a78050f5b1689f513c0812971e1ba95 /backends/platform
parent85c8c84804125599547f8408962656e2686543e9 (diff)
downloadscummvm-rg350-b6e5e4fe1e5501b9c196ea3b8c0eb21f8854ce55.tar.gz
scummvm-rg350-b6e5e4fe1e5501b9c196ea3b8c0eb21f8854ce55.tar.bz2
scummvm-rg350-b6e5e4fe1e5501b9c196ea3b8c0eb21f8854ce55.zip
MAEMO: Remove pointless copy ctor call
Thanks LordHoto
Diffstat (limited to 'backends/platform')
-rw-r--r--backends/platform/maemo/maemo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/maemo/maemo.cpp b/backends/platform/maemo/maemo.cpp
index 49fa9298d4..60ed4170e2 100644
--- a/backends/platform/maemo/maemo.cpp
+++ b/backends/platform/maemo/maemo.cpp
@@ -96,7 +96,7 @@ void OSystem_SDL_Maemo::initBackend() {
ConfMan.set("vkeybdpath", DATA_PATH);
- _model = Model(detectModel());
+ _model = detectModel();
registerDefaultKeyBindings(_keymapperDefaultBindings, _model);