diff --git a/code/sys/sys_osx.m b/code/sys/sys_osx.m index b0ecf6a5..bb89f319 100644 --- a/code/sys/sys_osx.m +++ b/code/sys/sys_osx.m @@ -50,9 +50,9 @@ dialogResult_t Sys_Dialog( dialogType_t type, const char *message, const char *t [alert setInformativeText: [NSString stringWithUTF8String: message]]; if( type == DT_ERROR ) - [alert setAlertStyle: NSCriticalAlertStyle]; + [alert setAlertStyle: NSAlertStyleCritical]; else - [alert setAlertStyle: NSWarningAlertStyle]; + [alert setAlertStyle: NSAlertStyleWarning]; switch( type ) {