# HG changeset patch # User bjarni # Date 2005-07-29 09:45:25 # Node ID 16f8f81c0863ffbb5918f18b55a3a235da374957 # Parent 3bbef2e70fadcd366dbdacca2b722bd956fe0beb (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) diff --git a/os/macosx/plistgen.sh b/os/macosx/plistgen.sh --- a/os/macosx/plistgen.sh +++ b/os/macosx/plistgen.sh @@ -31,7 +31,7 @@ echo "CFBundleInfoDictionaryVersion 6.0 CFBundleName - ottd + OpenTTD CFBundlePackageType APPL CFBundleShortVersionString diff --git a/stdafx.h b/stdafx.h --- a/stdafx.h +++ b/stdafx.h @@ -24,7 +24,8 @@ #include // 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 #else #include "os/macosx/macos.h"