Commit 96e8606b authored by Ryan C. Gordon's avatar Ryan C. Gordon

Fixed a NSLog() format string.

Thanks to Mattias Holm for the patch!
parent 981cef30
...@@ -234,7 +234,7 @@ SDL_PromptAssertion_cocoa(const SDL_assert_data *data) ...@@ -234,7 +234,7 @@ SDL_PromptAssertion_cocoa(const SDL_assert_data *data)
data->trigger_count, (data->trigger_count == 1) ? "" : "s", data->trigger_count, (data->trigger_count == 1) ? "" : "s",
data->condition]; data->condition];
NSLog(@"%s", msg); NSLog(@"%@", msg);
/* /*
* !!! FIXME: this code needs to deal with fullscreen modes: * !!! FIXME: this code needs to deal with fullscreen modes:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment