Fix #10176: Mistake in sprite for the land tool's 6x6 grid. (#10735)

This commit is contained in:
Aaron van Geffen 2020-02-19 09:45:00 +01:00 committed by GitHub
parent f41f878581
commit dd869c8c0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 2 deletions

View File

@ -10,6 +10,7 @@
- Fix: [#5249] No collision detection when building ride entrance at heights > 85.5m.
- Fix: [#7784] Vehicle tab takes 1st car colour instead of tab_vehicle's colour.
- Fix: [#8875] RCT1 competition scenarios are classified incorrectly.
- Fix: [#10176] Mistake in the sprite for the land tool's 6x6 grid.
- Fix: [#10196] Doors unable to be placed at end of track corners.
- Fix: [#10228] Can't import RCT1 Deluxe from Steam.
- Fix: [#10313] Path furniture can be placed on level crossings.

View File

@ -447,6 +447,11 @@
{
"path": "icons/rct1_simulate_on_pressed.png"
},
{
"path": "tool/normal_selection_6x6.png",
"x_offset": 1,
"y_offset": 4
},
{
"path": "font/latin/ae-uc-small.png",
"y_offset": 0,

Binary file not shown.

After

Width:  |  Height:  |  Size: 948 B

View File

@ -31,7 +31,7 @@ static uint16_t toolSizeSpriteIndices[] =
SPR_LAND_TOOL_SIZE_3,
SPR_LAND_TOOL_SIZE_4,
SPR_LAND_TOOL_SIZE_5,
SPR_LAND_TOOL_SIZE_6,
SPR_G2_LAND_TOOL_SIZE_6,
SPR_LAND_TOOL_SIZE_7,
};
// clang-format on

View File

@ -852,7 +852,9 @@ enum
SPR_G2_RCT1_SIMULATE_BUTTON_2 = SPR_G2_BEGIN + 129,
SPR_G2_RCT1_SIMULATE_BUTTON_3 = SPR_G2_BEGIN + 130,
SPR_G2_CHAR_BEGIN = SPR_G2_BEGIN + 131,
SPR_G2_LAND_TOOL_SIZE_6 = SPR_G2_BEGIN + 131,
SPR_G2_CHAR_BEGIN = SPR_G2_BEGIN + 132,
SPR_G2_AE_UPPER = SPR_G2_CHAR_BEGIN,
SPR_G2_AE_LOWER = SPR_G2_CHAR_BEGIN + 1,