1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 19:43:06 +01:00

window_research_development_paint() ride names fix

stringId from typeId was not working right, this fixes it and gives
correct research ride names
This commit is contained in:
zsilencer
2014-08-22 15:37:18 -06:00
parent 6414d44306
commit 0992a6adcd

View File

@@ -346,7 +346,7 @@ static void window_research_development_paint()
if (RCT2_GLOBAL(rideEntry + 8, uint32) & 0x1000)
stringId = RCT2_GLOBAL(rideEntry, uint16);
else
stringId = (typeId & 0xFF) + 2;
stringId = ((typeId >> 8) & 0xFF) + 2;
} else {
uint8 *sceneryEntry = RCT2_GLOBAL(0x009ADA90 + (typeId & 0xFFFF) * 4, uint8*);
stringId = RCT2_GLOBAL(sceneryEntry, uint16);
@@ -385,7 +385,7 @@ static void window_research_development_paint()
if (RCT2_GLOBAL(rideEntry + 8, uint32) & 0x1000)
stringId = RCT2_GLOBAL(rideEntry, uint16);
else
stringId = (typeId & 0xFF00) + 2;
stringId = ((typeId >> 8) & 0xFF) + 2;
lastDevelopmentFormat = STR_RESEARCH_RIDE_LABEL;
} else {