1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 03:23:15 +01:00

Add extra casts

This commit is contained in:
Marijn van der Werf
2017-09-13 21:33:39 +02:00
parent 9d93d28efb
commit 7ede9a3f58

View File

@@ -1414,7 +1414,7 @@ void game_load_or_quit_no_save_prompt()
} else {
Intent * intent = intent_create(WC_LOADSAVE);
intent_set_uint(intent, INTENT_EXTRA_LOADSAVE_TYPE, LOADSAVETYPE_LOAD | LOADSAVETYPE_GAME);
intent_set_pointer(intent, INTENT_EXTRA_CALLBACK, game_load_or_quit_no_save_prompt_callback);
intent_set_pointer(intent, INTENT_EXTRA_CALLBACK, (void *) game_load_or_quit_no_save_prompt_callback);
context_open_intent(intent);
intent_release(intent);
}