[Scummvm-cvs-logs] SF.net SVN: scummvm: [21703] scummvm/trunk/common

sev at users.sourceforge.net sev at users.sourceforge.net
Sat Apr 8 16:21:01 CEST 2006


Revision: 21703
Author:   sev
Date:     2006-04-08 16:20:15 -0700 (Sat, 08 Apr 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=21703&view=rev

Log Message:
-----------
Add comments explaining what does EN_ANY mean

Modified Paths:
--------------
    scummvm/trunk/common/util.cpp
    scummvm/trunk/common/util.h
Modified: scummvm/trunk/common/util.cpp
===================================================================
--- scummvm/trunk/common/util.cpp	2006-04-08 23:12:56 UTC (rev 21702)
+++ scummvm/trunk/common/util.cpp	2006-04-08 23:20:15 UTC (rev 21703)
@@ -110,7 +110,7 @@
 
 
 const LanguageDescription g_languages[] = {
-	{"en", "English", EN_ANY},
+	{"en", "English", EN_ANY}, // Generic English (when only one game version exist)
 	{"us", "English (US)", EN_USA},
 	{"de", "German", DE_DEU},
 	{"fr", "French", FR_FRA},

Modified: scummvm/trunk/common/util.h
===================================================================
--- scummvm/trunk/common/util.h	2006-04-08 23:12:56 UTC (rev 21702)
+++ scummvm/trunk/common/util.h	2006-04-08 23:20:15 UTC (rev 21703)
@@ -91,7 +91,7 @@
  */
 enum Language {
 	UNK_LANG = -1,	// Use default language (i.e. none specified)
-	EN_ANY = 0,
+	EN_ANY = 0,     // Generic English (when only one game version exist)
 	EN_USA = 1,
 	DE_DEU = 2,
 	FR_FRA = 3,


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.





More information about the Scummvm-git-logs mailing list