From a7f015669a303cf6924aa772a91505bad5fad32c Mon Sep 17 00:00:00 2001 From: "Miso Zmiric (Mike Squinter)" Date: Mon, 24 Nov 2014 17:37:45 +0000 Subject: [PATCH] fix erroneous position calculation due to additional offset --- src/windows/game_top_toolbar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/windows/game_top_toolbar.c b/src/windows/game_top_toolbar.c index 4b2c2ccbe7..92a77f1e6c 100644 --- a/src/windows/game_top_toolbar.c +++ b/src/windows/game_top_toolbar.c @@ -415,7 +415,7 @@ static void window_game_top_toolbar_invalidate() window_game_top_toolbar_widgets[WIDX_PAUSE].left = x; x += 29; window_game_top_toolbar_widgets[WIDX_PAUSE].right = x; - x += 1; + // x += 1; // window_game_top_toolbar_widgets[WIDX_FASTFORWARD].left = x; // x += 29; // window_game_top_toolbar_widgets[WIDX_FASTFORWARD].right = x;