changeset 2225:a191469a33fe draft

(svn r2745) -Fix: [OSX] removed the assert window introduced in 2741 from strgen - it appeared to cause problems and strgen don't need a GUI - renamed ottd to openttd in the app menu (Tobin)
author bjarni <bjarni@openttd.org>
date Fri, 29 Jul 2005 09:45:25 +0000
parents 9da25b5a0f2d
children 87614abd420d
files os/macosx/plistgen.sh stdafx.h
diffstat 2 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/os/macosx/plistgen.sh
+++ b/os/macosx/plistgen.sh
@@ -31,7 +31,7 @@
         <key>CFBundleInfoDictionaryVersion</key>
         <string>6.0</string>
         <key>CFBundleName</key>
-        <string>ottd</string>
+        <string>OpenTTD</string>
         <key>CFBundlePackageType</key>
         <string>APPL</string>
         <key>CFBundleShortVersionString</key>
--- a/stdafx.h
+++ b/stdafx.h
@@ -24,7 +24,8 @@
 #include <stdlib.h>
 
 // MacOS X will use an NSAlert to display failed assertaions since they're lost unless running from a terminal
-#if !defined(__APPLE__)
+// strgen always runs from terminal and don't need a window for asserts
+#if !defined(__APPLE__) || defined(STRGEN)
 #include <assert.h>
 #else
 #include "os/macosx/macos.h"