Fix prototype of Mac msgbox_warning

Reported by btb: https://github.com/dxx-rebirth/dxx-rebirth/pull/12
Fixed by btb: 2f4b2f031c
This commit is contained in:
Kp 2014-11-30 17:03:54 +00:00
parent 962045b911
commit 3cbb73c1f2

View file

@ -88,7 +88,7 @@ void display_mac_alert(const char *message, int error)
gr_toggle_fullscreen();
}
void msgbox_warning(char *message)
void msgbox_warning(const char *message)
{
display_mac_alert(message, 0);
}