From 54e6ffdbdd1c3bc32864baf15c53ec00e0fe5f09 Mon Sep 17 00:00:00 2001 From: Aaron van Geffen Date: Sat, 23 Dec 2017 00:47:16 +0100 Subject: [PATCH] Fix #6860: Intensity and nausea ratings are too high in build menu. --- src/openrct2-ui/windows/TrackList.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/openrct2-ui/windows/TrackList.cpp b/src/openrct2-ui/windows/TrackList.cpp index f57b76f8d0..7197b6ded2 100644 --- a/src/openrct2-ui/windows/TrackList.cpp +++ b/src/openrct2-ui/windows/TrackList.cpp @@ -576,11 +576,11 @@ static void window_track_list_paint(rct_window *w, rct_drawpixelinfo *dpi) gfx_draw_string_left(dpi, STR_TRACK_LIST_EXCITEMENT_RATING, &rating, COLOUR_BLACK, x, y); y += LIST_ROW_HEIGHT; - rating = td6->intensity * LIST_ROW_HEIGHT; + rating = td6->intensity * 10; gfx_draw_string_left(dpi, STR_TRACK_LIST_INTENSITY_RATING, &rating, COLOUR_BLACK, x, y); y += LIST_ROW_HEIGHT; - rating = td6->nausea * LIST_ROW_HEIGHT; + rating = td6->nausea * 10; gfx_draw_string_left(dpi, STR_TRACK_LIST_NAUSEA_RATING, &rating, COLOUR_BLACK, x, y); y += LIST_ROW_HEIGHT + 4;