1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-04 13:42:55 +01:00

fix number of designs label position

This commit is contained in:
danidoedel
2015-06-04 17:31:42 +02:00
parent c736face55
commit a57e4587f1

View File

@@ -970,7 +970,7 @@ static void window_new_ride_paint_ride_information(rct_window *w, rct_drawpixeli
stringId = 3340;
break;
}
gfx_draw_string_left(dpi, stringId, &_lastTrackDesignCount, 0, x, y + 40);
gfx_draw_string_left(dpi, stringId, &_lastTrackDesignCount, 0, x, y + 39);
}
// Price
@@ -990,7 +990,7 @@ static void window_new_ride_paint_ride_information(rct_window *w, rct_drawpixeli
if (!ride_type_has_flag(item.type, RIDE_TYPE_FLAG_15))
stringId++;
gfx_draw_string_right(dpi, stringId, &price, 0, x + width, y + 40);
gfx_draw_string_right(dpi, stringId, &price, 0, x + width, y + 39);
}
}