Attempt to fix "cast from pointer to integer of different size" warnings.

Ryan C. Gordon 2018-06-29 16:56:11 -04:00
parent 52857de251
commit 7c2028f8e9
1 changed files with 3 additions and 3 deletions

View File

@ -576,13 +576,13 @@ WIN_ShowOldMessageBox(const SDL_MessageBoxData *messageboxdata, int *buttonid)
switch (messageboxdata->flags) {
case SDL_MESSAGEBOX_ERROR:
icon = (Uint16)IDI_ERROR;
icon = (Uint16)(size_t)IDI_ERROR;
break;
case SDL_MESSAGEBOX_WARNING:
icon = (Uint16)IDI_WARNING;
icon = (Uint16)(size_t)IDI_WARNING;
break;
case SDL_MESSAGEBOX_INFORMATION:
icon = (Uint16)IDI_INFORMATION;
icon = (Uint16)(size_t)IDI_INFORMATION;
break;
}