summaryrefslogtreecommitdiff
path: root/os/macosx/macos.m
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2006-01-06 21:27:44 +0000
committertruelight <truelight@openttd.org>2006-01-06 21:27:44 +0000
commita1f83094538f72dd7c8a9eb9bc3b62e8cfa8402a (patch)
tree9ccb022eed5e1cc12417ed0bb1ef6aa65bab2576 /os/macosx/macos.m
parent59bea21c2cdb300f78834f90bd8687c4146f7454 (diff)
downloadopenttd-a1f83094538f72dd7c8a9eb9bc3b62e8cfa8402a.tar.xz
(svn r3375) -Add: [ FS#29 ] show an error dialog for OSX cocoa driver (egladil)
Diffstat (limited to 'os/macosx/macos.m')
-rw-r--r--os/macosx/macos.m22
1 files changed, 22 insertions, 0 deletions
diff --git a/os/macosx/macos.m b/os/macosx/macos.m
index ee791166a..d61900bb1 100644
--- a/os/macosx/macos.m
+++ b/os/macosx/macos.m
@@ -8,11 +8,33 @@
* To insure that the crosscompiler still works, let him try any changes before they are committed
*/
+
+#ifdef WITH_SDL
+
void ShowMacDialog ( const char *title, const char *message, const char *buttonLabel )
{
NSRunAlertPanel([NSString stringWithCString: title], [NSString stringWithCString: message], [NSString stringWithCString: buttonLabel], nil, nil);
}
+#elif defined WITH_COCOA
+
+void CocoaDialog ( const char *title, const char *message, const char *buttonLabel );
+
+void ShowMacDialog ( const char *title, const char *message, const char *buttonLabel )
+{
+ CocoaDialog(title, message, buttonLabel);
+}
+
+
+#else
+
+void ShowMacDialog ( const char *title, const char *message, const char *buttonLabel )
+{
+ fprintf(stderr, "%s: %s\n", title, message);
+}
+
+#endif
+
void ShowMacAssertDialog ( const char *function, const char *file, const int line, const char *expression )
{
const char *buffer =