diff options
author | Tarek Soliman | 2011-10-11 17:24:42 -0500 |
---|---|---|
committer | Tarek Soliman | 2011-10-11 19:54:16 -0500 |
commit | a1fe57702ac394903df3bb9be331b87e28e38a73 (patch) | |
tree | 0c8e2aa424097be7c14242f72b42a657ceae683e /backends/platform/maemo | |
parent | 42ccfbfdde548e6c96cbff8238c976cc12853712 (diff) | |
download | scummvm-rg350-a1fe57702ac394903df3bb9be331b87e28e38a73.tar.gz scummvm-rg350-a1fe57702ac394903df3bb9be331b87e28e38a73.tar.bz2 scummvm-rg350-a1fe57702ac394903df3bb9be331b87e28e38a73.zip |
MAEMO: added hardware alias to the hardware detection table
Diffstat (limited to 'backends/platform/maemo')
-rw-r--r-- | backends/platform/maemo/maemo-common.h | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/backends/platform/maemo/maemo-common.h b/backends/platform/maemo/maemo-common.h index be256ad340..6da38d49b5 100644 --- a/backends/platform/maemo/maemo-common.h +++ b/backends/platform/maemo/maemo-common.h @@ -35,19 +35,16 @@ enum MaemoModelType { struct MaemoModel { const char *hwId; MaemoModelType modelType; + const char *hwAlias; bool hwKeyboard; }; static const MaemoModel maemoModels[] = { -// N800 - {"RX-34", kMaemoModelTypeN800, false}, -// N810 - {"RX-44", kMaemoModelTypeN810, true}, -// N810W - {"RX-48", kMaemoModelTypeN810, true}, -// N900 - {"RX-51", kMaemoModelTypeN900, true}, - {0, kMaemoModelTypeInvalid, true} + {"RX-34", kMaemoModelTypeN800, "N800", false}, + {"RX-44", kMaemoModelTypeN810, "N810", true}, + {"RX-48", kMaemoModelTypeN810, "N810W", true}, + {"RX-51", kMaemoModelTypeN900, "N900", true}, + {0, kMaemoModelTypeInvalid, 0, true} }; |