unix.c
changeset 529 3b23d5073d32
parent 507 8aa8100b0b22
child 534 17ab2f22ff74
--- a/unix.c	Wed Dec 01 11:50:20 2004 +0000
+++ b/unix.c	Wed Dec 01 15:23:05 2004 +0000
@@ -419,11 +419,14 @@
 
 void ShowOSErrorBox(const char *buf)
 {
+#if defined(__APPLE__)
+	// this creates an error in the console and then opens the console.
+	// Colourcodes are not used in the console, so they are skipped here
+	fprintf(stderr, "Error: %s", buf);
+	system("/Applications/Utilities/Console.app/Contents/MacOS/Console");
+#else
+	// all systems, but OSX
 	fprintf(stderr, "\033[1;31mError: %s\033[0;39m\n", buf);
-
-#if defined(__APPLE__)
-	// this opens the crash log opener script
-	system("./Crash_Log_Opener.app");
 #endif
 }