[Scummvm-cvs-logs] SF.net SVN: scummvm:[40477] scummvm/trunk/engines/cruise
dreammaster at users.sourceforge.net
dreammaster at users.sourceforge.net
Tue May 12 12:20:13 CEST 2009
Revision: 40477
http://scummvm.svn.sourceforge.net/scummvm/?rev=40477&view=rev
Author: dreammaster
Date: 2009-05-12 10:20:12 +0000 (Tue, 12 May 2009)
Log Message:
-----------
Changed the hardcoded 'Parler de..' string in the conversation dialog to use the correct language string
Modified Paths:
--------------
scummvm/trunk/engines/cruise/cruise.h
scummvm/trunk/engines/cruise/cruise_main.cpp
Modified: scummvm/trunk/engines/cruise/cruise.h
===================================================================
--- scummvm/trunk/engines/cruise/cruise.h 2009-05-12 10:02:18 UTC (rev 40476)
+++ scummvm/trunk/engines/cruise/cruise.h 2009-05-12 10:20:12 UTC (rev 40477)
@@ -46,7 +46,7 @@
#define MAX_LANGUAGE_STRINGS 25
-enum LangStringId { ID_PAUSED = 0, ID_INVENTORY = 5, ID_PLAYER_MENU = 7,
+enum LangStringId { ID_PAUSED = 0, ID_INVENTORY = 5, ID_SPEAK_ABOUT = 6, ID_PLAYER_MENU = 7,
ID_SAVE = 9, ID_LOAD = 10, ID_RESTART = 11, ID_QUIT = 12};
struct CRUISEGameDescription;
Modified: scummvm/trunk/engines/cruise/cruise_main.cpp
===================================================================
--- scummvm/trunk/engines/cruise/cruise_main.cpp 2009-05-12 10:02:18 UTC (rev 40476)
+++ scummvm/trunk/engines/cruise/cruise_main.cpp 2009-05-12 10:20:12 UTC (rev 40477)
@@ -799,7 +799,7 @@
getSingleObjectParam(objOvl, objIdx, 5, &objectState);
- menuTable[0] = createMenu(x, y, "Parler de...");
+ menuTable[0] = createMenu(x, y, _vm->langString(ID_SPEAK_ABOUT));
for (j = 1; j < numOfLoadedOverlay; j++) {
if (overlayTable[j].alreadyLoaded) {
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