diff options
author | Max Horn | 2006-01-14 11:07:06 +0000 |
---|---|---|
committer | Max Horn | 2006-01-14 11:07:06 +0000 |
commit | 6dbfaa2c318187192e728a4580da53cc90e90cb7 (patch) | |
tree | a23ed71907b86df6bd22a12bbf9450a6711567d0 | |
parent | db35174cc4e139da7c54e2c17827f1385bc75a0e (diff) | |
download | scummvm-rg350-6dbfaa2c318187192e728a4580da53cc90e90cb7.tar.gz scummvm-rg350-6dbfaa2c318187192e728a4580da53cc90e90cb7.tar.bz2 scummvm-rg350-6dbfaa2c318187192e728a4580da53cc90e90cb7.zip |
Restore the alphabetical order of the platforms (this should really be done by the GUI automatically, but for not it is simpler to fix it here)
svn-id: r20022
-rw-r--r-- | common/util.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/util.cpp b/common/util.cpp index 85ed26fb55..fb22b19f0e 100644 --- a/common/util.cpp +++ b/common/util.cpp @@ -166,9 +166,11 @@ const char *getLanguageDescription(Language id) { const PlatformDescription g_platforms[] = { + {"acorn", "acorn", "Acorn", kPlatformAcorn}, {"amiga", "ami", "Amiga", kPlatformAmiga}, {"atari", "atari-st", "Atari ST", kPlatformAtariST}, {"c64", "c64", "Commodore 64", kPlatformC64}, + {"pc", "dos", "DOS", kPlatformPC}, // The 'official' spelling seems to be "FM-TOWNS" (e.g. in the Indy4 demo). // However, on the net many variations can be seen, like "FMTOWNS", @@ -178,10 +180,8 @@ const PlatformDescription g_platforms[] = { {"linux", "linux", "Linux", kPlatformLinux}, {"macintosh", "mac", "Macintosh", kPlatformMacintosh}, {"nes", "nes", "NES", kPlatformNES}, - {"pc", "dos", "DOS", kPlatformPC}, - {"windows", "win", "Windows", kPlatformWindows}, - {"acorn", "acorn", "Acorn", kPlatformAcorn}, {"segacd", "segacd", "SegaCD", kPlatformSegaCD}, + {"windows", "win", "Windows", kPlatformWindows}, {0, 0, "Default", kPlatformUnknown} }; |