Esempio n. 1
0
/**
 *
 *  rct2: 0x00664272
 */
static void window_land_update()
{
	rct_window *w;

	__asm mov w, esi

	// Close window if another tool is open
	if (window_land_should_close())
		window_close(w);
}
Esempio n. 2
0
/**
 *
 *  rct2: 0x00664272
 */
static void window_land_update(rct_window *w)
{
	// Close window if another tool is open
	if (window_land_should_close())
		window_close(w);
}
Esempio n. 3
0
/**
 *
 *  rct2: 0x006640A5
 */
static void window_land_close()
{
	// If the tool wasn't changed, turn tool off
	if (!window_land_should_close())
		RCT2_CALLPROC_EBPSAFE(0x006EE281);
}
Esempio n. 4
0
/**
 *
 *  rct2: 0x006640A5
 */
static void window_land_close()
{
	// If the tool wasn't changed, turn tool off
	if (!window_land_should_close())
		tool_cancel();
}