mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 21:12:20 +00:00
5da0f5c7fa
Nothing is hooked up yet and adjusted - next thing to do.
19 lines
589 B
Text
19 lines
589 B
Text
#include <CoreFoundation/CoreFoundation.h>
|
|
#include "SDL.h"
|
|
|
|
void Mac_I_FatalError(const char* errortext)
|
|
{
|
|
// Close window or exit fullscreen and release mouse capture
|
|
SDL_Quit();
|
|
|
|
const CFStringRef errorString = CFStringCreateWithCStringNoCopy( kCFAllocatorDefault,
|
|
errortext, kCFStringEncodingASCII, kCFAllocatorNull );
|
|
if ( NULL != errorString )
|
|
{
|
|
CFOptionFlags dummy;
|
|
|
|
CFUserNotificationDisplayAlert( 0, kCFUserNotificationStopAlertLevel, NULL, NULL, NULL,
|
|
CFSTR( "Fatal Error" ), errorString, CFSTR( "Exit" ), NULL, NULL, &dummy );
|
|
CFRelease( errorString );
|
|
}
|
|
}
|