[Scummvm-cvs-logs] CVS: scummvm/common util.cpp,1.64,1.65

Max Horn fingolfin at users.sourceforge.net
Sat Jan 14 03:08:12 CET 2006


Update of /cvsroot/scummvm/scummvm/common
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4505

Modified Files:
	util.cpp 
Log Message:
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)

Index: util.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/util.cpp,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -d -r1.64 -r1.65
--- util.cpp	14 Jan 2006 09:28:38 -0000	1.64
+++ util.cpp	14 Jan 2006 11:07:06 -0000	1.65
@@ -166,9 +166,11 @@
 
 
 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 @@
 	{"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}
 };





More information about the Scummvm-git-logs mailing list