1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 13:33:02 +01:00

update sandbox icon

This commit is contained in:
IntelOrca
2015-07-02 21:18:36 +01:00
parent 9c8be6a483
commit da3be49f34
3 changed files with 4 additions and 2 deletions

BIN
resources/g2/33.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 506 B

View File

@@ -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

View File

@@ -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);
}