use helper functions instead of direct access to 0x00982164

This commit is contained in:
IntelOrca 2016-02-20 16:30:08 +00:00
parent caf8b45dc3
commit bd040918a1
1 changed files with 2 additions and 6 deletions

View File

@ -5798,9 +5798,7 @@ static void window_ride_income_paint(rct_window *w, rct_drawpixelinfo *dpi)
profit = ride->price;
stringId = STR_PROFIT_PER_ITEM_SOLD;
profit -= primaryItem < 32 ?
RCT2_GLOBAL(0x00982164 + (primaryItem * 8), uint16) :
RCT2_GLOBAL(0x00982144 + (primaryItem * 8), uint16);
profit -= get_shop_item_cost(primaryItem);
if (profit < 0) {
profit *= -1;
stringId = STR_LOSS_PER_ITEM_SOLD;
@ -5819,9 +5817,7 @@ static void window_ride_income_paint(rct_window *w, rct_drawpixelinfo *dpi)
profit = ride->price_secondary;
stringId = STR_PROFIT_PER_ITEM_SOLD;
profit -= secondaryItem < 32 ?
RCT2_GLOBAL(0x00982164 + (secondaryItem * 8), uint16) :
RCT2_GLOBAL(0x00982144 + (secondaryItem * 8), uint16);
profit -= get_shop_item_cost(secondaryItem);
if (profit < 0) {
profit *= -1;
stringId = STR_LOSS_PER_ITEM_SOLD;