summaryrefslogtreecommitdiff
path: root/unix.c
diff options
context:
space:
mode:
authorbjarni <bjarni@openttd.org>2005-12-09 13:07:21 +0000
committerbjarni <bjarni@openttd.org>2005-12-09 13:07:21 +0000
commit073aae307e4792f0afbf1c01a7f1b1640c08a1f0 (patch)
treef0d5922c98f436ad1347bb5af8afc4f6c06a8f0d /unix.c
parent98ef748715887b45ee3004313c16690caf71c268 (diff)
downloadopenttd-073aae307e4792f0afbf1c01a7f1b1640c08a1f0.tar.xz
(svn r3275) -Fix: [OSX] removed libpng support and error dialogs from jaguar crosscompiles to fix crash
Diffstat (limited to 'unix.c')
-rw-r--r--unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix.c b/unix.c
index fd20e3715..d5eaf0272 100644
--- a/unix.c
+++ b/unix.c
@@ -434,7 +434,7 @@ void ShowInfo(const char *str)
void ShowOSErrorBox(const char *buf)
{
-#if defined(__APPLE__)
+#if defined(__APPLE__) && !defined(JAGUAR_CROSSCOMPILE)
// this creates an NSAlertPanel with the contents of 'buf'
// this is the native and nicest way to do this on OSX
ShowMacDialog( buf, "See readme for more info\nMost likely you are missing files from the original TTD", "Quit" );