From f95fb570adc9d3f228082083601cc07e5b7e7621 Mon Sep 17 00:00:00 2001 From: maedhros Date: Sun, 27 Jan 2008 17:32:12 +0000 Subject: (svn r11994) -Codechange: Remove numbers from string names where the strings aren't present in TTD, since they don't correspond to either TTD's TextIDs or OpenTTD's StringIDs. --- src/intro_gui.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/intro_gui.cpp') diff --git a/src/intro_gui.cpp b/src/intro_gui.cpp index 8112e7049..bab71acf2 100644 --- a/src/intro_gui.cpp +++ b/src/intro_gui.cpp @@ -143,9 +143,9 @@ static void AskExitGameCallback(Window *w, bool confirmed) void AskExitGame() { #if defined(_WIN32) - SetDParam(0, STR_0133_WINDOWS); + SetDParam(0, STR_OSNAME_WINDOWS); #elif defined(__APPLE__) - SetDParam(0, STR_0135_OSX); + SetDParam(0, STR_OSNAME_OSX); #elif defined(__BEOS__) SetDParam(0, STR_OSNAME_BEOS); #elif defined(__MORPHOS__) @@ -157,7 +157,7 @@ void AskExitGame() #elif defined(SUNOS) SetDParam(0, STR_OSNAME_SUNOS); #else - SetDParam(0, STR_0134_UNIX); + SetDParam(0, STR_OSNAME_UNIX); #endif ShowQuery( STR_00C7_QUIT, -- cgit v1.2.3-54-g00ecf