Change msgbox flags/log on Linux to "warning"

This commit is contained in:
Fabio Ka 2016-01-27 12:57:08 -02:00 committed by anyc
parent 6b2b6e476c
commit d193e9f3b3
1 changed files with 2 additions and 2 deletions

View File

@ -154,8 +154,8 @@ utf8 *platform_open_directory_browser(utf8 *title)
void platform_show_messagebox(char *message)
{
SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_ERROR, "OpenRCT2", message, gWindow);
log_verbose(message);
SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_WARNING, "OpenRCT2", message, gWindow);
log_warning(message);
}
/**