1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-19 13:03:11 +01:00

Removed reference to deprecated NSWarningAlertStyle.

This commit is contained in:
Aaron van Geffen
2016-09-22 22:20:42 +02:00
parent 5b01653c11
commit d52add4486

View File

@@ -104,7 +104,6 @@ void platform_show_messagebox(char *message)
NSAlert *alert = [[[NSAlert alloc] init] autorelease];
[alert addButtonWithTitle:@"OK"];
alert.messageText = [NSString stringWithUTF8String:message];
alert.alertStyle = NSWarningAlertStyle;
[alert runModal];
}
}