(svn r869) Mac: finally made asserts open the console, so people should be able to see what went wrong even if they opened the game in the GUI

deleted the wrongly moved bemidi.cpp
This commit is contained in:
bjarni
2004-12-01 15:23:05 +00:00
parent 2fc6077a68
commit c925f452e7
3 changed files with 7 additions and 59 deletions

11
unix.c
View File

@@ -419,11 +419,14 @@ void ShowInfo(const char *str)
void ShowOSErrorBox(const char *buf)
{
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");
// 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);
#endif
}