diff --git a/resources/g2/33.png b/resources/g2/33.png new file mode 100644 index 0000000000..c6d2c04941 Binary files /dev/null and b/resources/g2/33.png differ diff --git a/src/sprites.h b/src/sprites.h index 1118cd3f7f..337fef7c8e 100644 --- a/src/sprites.h +++ b/src/sprites.h @@ -385,6 +385,8 @@ enum { SPR_G2_TITLE_STOP = SPR_G2_BEGIN + 30, SPR_G2_TITLE_PLAY = SPR_G2_BEGIN + 31, SPR_G2_TITLE_SKIP = SPR_G2_BEGIN + 32, + + SPR_G2_SANDBOX = SPR_G2_BEGIN + 33, }; #endif diff --git a/src/windows/top_toolbar.c b/src/windows/top_toolbar.c index b89fa750fa..0f2f0114cc 100644 --- a/src/windows/top_toolbar.c +++ b/src/windows/top_toolbar.c @@ -171,7 +171,7 @@ static rct_widget window_top_toolbar_widgets[] = { { WWT_TRNBTN, 0, 0x001E, 0x003B, 0, 27, 0x20000000 | 0x15F9, 5148 }, // Fast forward { WWT_TRNBTN, 0, 0x001E, 0x003B, 0, 27, 0x20000000 | 0x15F9, 5149 }, // Cheats - { WWT_TRNBTN, 0, 0x001E, 0x003B, 0, 27, 0x20000000 | 0x15F9, STR_DEBUG_TIP }, // Debug + { WWT_TRNBTN, 0, 0x001E, 0x003B, 0, 27, 0x20000000 | 0x15F9, STR_DEBUG_TIP }, // Debug { WWT_TRNBTN, 3, 0x001E, 0x003B, 0, 27, 0x20000000 | 0x15F9, 3235 }, // Finances { WWT_TRNBTN, 3, 0x001E, 0x003B, 0, 27, 0x20000000 | 0x15F9, 2275 }, // Research @@ -752,7 +752,7 @@ static void window_top_toolbar_paint(rct_window *w, rct_drawpixelinfo *dpi) y = w->y + window_top_toolbar_widgets[WIDX_CHEATS].top - 1; if (widget_is_pressed(w, WIDX_CHEATS)) y++; - imgId = SPR_TAB_OBJECTIVE_0; + imgId = SPR_G2_SANDBOX; gfx_draw_sprite(dpi, imgId, x, y, 3); }