aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/maemo
diff options
context:
space:
mode:
authorTarek Soliman2012-02-15 16:13:35 -0600
committerTarek Soliman2012-02-15 16:38:53 -0600
commit7ae7e8073972dfbfc5d450b1a2b43134f3c64d27 (patch)
treebd0af35de098be5f4deefea1e1dadaa36c6892a5 /backends/platform/maemo
parent856744aa6a8d10ea62807a28df24f539fd8f2d06 (diff)
downloadscummvm-rg350-7ae7e8073972dfbfc5d450b1a2b43134f3c64d27.tar.gz
scummvm-rg350-7ae7e8073972dfbfc5d450b1a2b43134f3c64d27.tar.bz2
scummvm-rg350-7ae7e8073972dfbfc5d450b1a2b43134f3c64d27.zip
MAEMO: Rename hasHwKeyboard and add hasMenuKey
Diffstat (limited to 'backends/platform/maemo')
-rw-r--r--backends/platform/maemo/maemo-common.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/backends/platform/maemo/maemo-common.h b/backends/platform/maemo/maemo-common.h
index 30279bc2ef..453c70c45f 100644
--- a/backends/platform/maemo/maemo-common.h
+++ b/backends/platform/maemo/maemo-common.h
@@ -39,16 +39,17 @@ struct Model {
const char *hwId;
ModelType modelType;
const char *hwAlias;
- bool hwKeyboard;
+ bool hasHwKeyboard;
+ bool hasMenuKey;
};
static const Model models[] = {
- {"SU-18", kModelType770, "770", false},
- {"RX-34", kModelTypeN800, "N800", false},
- {"RX-44", kModelTypeN810, "N810", true},
- {"RX-48", kModelTypeN810, "N810W", true},
- {"RX-51", kModelTypeN900, "N900", true},
- {0, kModelTypeInvalid, 0, true}
+ {"SU-18", kModelType770, "770", false, true},
+ {"RX-34", kModelTypeN800, "N800", false, true},
+ {"RX-44", kModelTypeN810, "N810", true, true},
+ {"RX-48", kModelTypeN810, "N810W", true, true},
+ {"RX-51", kModelTypeN900, "N900", true, false},
+ {0, kModelTypeInvalid, 0, true, true}
};
enum CustomEventType {