diff options
author | Tarek Soliman | 2012-02-15 17:56:09 -0600 |
---|---|---|
committer | Tarek Soliman | 2012-02-15 17:56:09 -0600 |
commit | b6e5e4fe1e5501b9c196ea3b8c0eb21f8854ce55 (patch) | |
tree | 64e0904a6a78050f5b1689f513c0812971e1ba95 /backends | |
parent | 85c8c84804125599547f8408962656e2686543e9 (diff) | |
download | scummvm-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')
-rw-r--r-- | backends/platform/maemo/maemo.cpp | 2 |
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); |