1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-23 06:44:38 +01:00

Changed window_update to use cdecl where possible

This commit is contained in:
Duncan Frost
2014-05-19 18:47:14 +01:00
parent aaca1d2ece
commit d077beea20
14 changed files with 40 additions and 119 deletions

View File

@@ -35,7 +35,7 @@ static rct_widget window_tooltip_widgets[] = {
static void window_tooltip_emptysub() { }
static void window_tooltip_onclose();
static void window_tooltip_update();
static void window_tooltip_update(rct_window *w);
static void window_tooltip_paint();
static void* window_tooltip_events[] = {
@@ -173,7 +173,7 @@ static void window_tooltip_onclose()
*
* rct2: 0x006EA580
*/
static void window_tooltip_update()
static void window_tooltip_update(rct_window *w)
{
if (RCT2_GLOBAL(0x009DE51E, uint8) == 0)
RCT2_GLOBAL(RCT2_ADDRESS_TOOLTIP_NOT_SHOWN_TICKS, uint16) = 0;