From 2cc3a56ffc8527f72f7a2d06f9487c4108be7b98 Mon Sep 17 00:00:00 2001 From: Duncan Frost Date: Sat, 3 May 2014 08:37:07 +0100 Subject: [PATCH] Slowed down the cheat guests tab animation --- src/window_cheats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window_cheats.c b/src/window_cheats.c index ae02e6e2ac..47ae59c9cd 100644 --- a/src/window_cheats.c +++ b/src/window_cheats.c @@ -300,7 +300,7 @@ static void window_cheats_draw_tab_images(rct_drawpixelinfo *dpi, rct_window *w) if (!(w->disabled_widgets & (1 << WIDX_TAB_2))) { sprite_idx = 5568; if (w->page == WINDOW_CHEATS_PAGE_GUESTS) - sprite_idx += (w->var_48E / 2) % 8; + sprite_idx += (w->var_48E / 3) % 8; gfx_draw_sprite(dpi, sprite_idx, w->x + w->widgets[WIDX_TAB_2].left, w->y + w->widgets[WIDX_TAB_2].top); } }