diff options
| -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}  };  | 
