aboutsummaryrefslogtreecommitdiff
path: root/backends/platform
diff options
context:
space:
mode:
authorTarek Soliman2012-02-03 12:19:23 -0600
committerTarek Soliman2012-02-04 12:03:22 -0600
commit38b8e0906949090d517d1ccab3a852e659ab449e (patch)
tree1b25305b2acb1b7b879ff0e10ef41e1e1b5b568a /backends/platform
parent6fed44298e38c672789ac3b2e42d254dd5a6ee62 (diff)
downloadscummvm-rg350-38b8e0906949090d517d1ccab3a852e659ab449e.tar.gz
scummvm-rg350-38b8e0906949090d517d1ccab3a852e659ab449e.tar.bz2
scummvm-rg350-38b8e0906949090d517d1ccab3a852e659ab449e.zip
MAEMO: Add detection entry for the Nokia 700 running OS2008HE
This allows the Nokia 770 running OS2008HE to be used. Fixes bug#3483921 "Volume rocker do no emulate keypress as it used"
Diffstat (limited to 'backends/platform')
-rw-r--r--backends/platform/maemo/maemo-common.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/backends/platform/maemo/maemo-common.h b/backends/platform/maemo/maemo-common.h
index f33aa24278..5f8645a6b7 100644
--- a/backends/platform/maemo/maemo-common.h
+++ b/backends/platform/maemo/maemo-common.h
@@ -28,9 +28,10 @@
namespace Maemo {
enum ModelType {
- kModelTypeN800 = 1,
- kModelTypeN810 = 2,
- kModelTypeN900 = 4,
+ kModelType770 = 1,
+ kModelTypeN800 = 2,
+ kModelTypeN810 = 4,
+ kModelTypeN900 = 8,
kModelTypeInvalid = 0
};
@@ -42,6 +43,7 @@ struct Model {
};
static const Model models[] = {
+ {"SU-18", kModelType770, "770", false},
{"RX-34", kModelTypeN800, "N800", false},
{"RX-44", kModelTypeN810, "N810", true},
{"RX-48", kModelTypeN810, "N810W", true},