Exemplo n.º 1
0
/**
 *
 *  rct2: 0x0066DF17
 */
static void window_save_prompt_close(rct_window *w)
{
	// Unpause the game
	RCT2_GLOBAL(RCT2_ADDRESS_GAME_PAUSED, uint8) &= ~2;
	audio_unpause_sounds();
	window_invalidate_by_class(WC_TOP_TOOLBAR);
}
Exemplo n.º 2
0
/**
 *
 *  rct2: 0x0066DF17
 */
static void window_save_prompt_close(rct_window *w)
{
	// Unpause the game
	gGamePaused &= ~GAME_PAUSED_MODAL;
	audio_unpause_sounds();
	window_invalidate_by_class(WC_TOP_TOOLBAR);
}