Changeset - r2225:16f8f81c0863
[Not reviewed]
master
0 2 0
bjarni - 19 years ago 2005-07-29 09:45:25
bjarni@openttd.org
(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)
2 files changed with 3 insertions and 2 deletions:
0 comments (0 inline, 0 general)
os/macosx/plistgen.sh
Show inline comments
 
@@ -31,7 +31,7 @@ echo "<?xml version=\"1.0\" encoding=\"U
 
        <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>
stdafx.h
Show inline comments
 
@@ -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"
0 comments (0 inline, 0 general)