1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 05:23:04 +01:00

Merge pull request #4473 from AaronVanGeffen/macos-alertstyle

Removed reference to deprecated NSWarningAlertStyle.
This commit is contained in:
Duncan
2016-09-25 10:10:53 +01:00
committed by GitHub

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];
}
}