mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-22 18:02:05 +00:00
MAEMO: added hardware alias to the hardware detection table
This commit is contained in:
parent
42ccfbfdde
commit
a1fe57702a
@ -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}
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user