mirror of
https://github.com/Ryujinx/SDL.git
synced 2024-12-24 19:05:35 +00:00
Fixed compiler warning
This commit is contained in:
parent
ce84813a80
commit
8ef5651185
|
@ -132,7 +132,7 @@ Cocoa_ShowMessageBox(const SDL_MessageBoxData *messageboxdata, int *buttonid)
|
|||
}
|
||||
else
|
||||
{
|
||||
returnValue = SDL_SetError("Did not get a valid `clicked button' id: %d", clicked);
|
||||
returnValue = SDL_SetError("Did not get a valid `clicked button' id: %ld", (long)clicked);
|
||||
}
|
||||
|
||||
[pool release];
|
||||
|
|
Loading…
Reference in a new issue