Commit 7c2028f8e9cf96f8e246255c0998780f9b323c03

Ryan C. Gordon 2018-06-29T16:56:11

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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff --git a/src/video/windows/SDL_windowsmessagebox.c b/src/video/windows/SDL_windowsmessagebox.c
index 7050f12..9ddb9e2 100644
--- a/src/video/windows/SDL_windowsmessagebox.c
+++ b/src/video/windows/SDL_windowsmessagebox.c
@@ -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;
     }