Example #1
0
/**
 *
 *  rct2: 0x006E6BCE
 */
static void window_water_update()
{
	rct_window *w;

	__asm mov w, esi

	// Close window if another tool is open
	if (window_water_should_close())
		window_close(w);
}
Example #2
0
/**
 *
 *  rct2: 0x006E6BCE
 */
static void window_water_update(rct_window *w)
{
	// Close window if another tool is open
	if (window_water_should_close())
		window_close(w);
}
Example #3
0
/**
 *
 *  rct2: 0x006E6B65
 */
static void window_water_close()
{
	// If the tool wasn't changed, turn tool off
	if (!window_water_should_close())
		tool_cancel();
}
Example #4
0
/**
 *
 *  rct2: 0x006E6B65
 */
static void window_water_close()
{
	// If the tool wasn't changed, turn tool off
	if (!window_water_should_close())
		RCT2_CALLPROC_EBPSAFE(0x006EE281);
}