From 4e0bccdf5364cfee7b70affa514b0149d8f06ec7 Mon Sep 17 00:00:00 2001 From: Fabian Greffrath Date: Tue, 22 Aug 2023 20:16:03 +0200 Subject: [PATCH] move stats widget to the top-left in no-HUD mode (#1184) * Revert "move stats widget to the top-left in distributed mode" This reverts commit 44b4172253e0cacc3568d03096d2467dd8e6a508. * move stats widget to the top-left in no-HUD mode --- src/hu_stuff.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/hu_stuff.c b/src/hu_stuff.c index 10a3aa9c..7fc983ba 100644 --- a/src/hu_stuff.c +++ b/src/hu_stuff.c @@ -146,8 +146,8 @@ static hu_widget_t doom_widgets[MAX_HUDS][MAX_WIDGETS] = { static hu_widget_t boom_widgets[MAX_HUDS][MAX_WIDGETS] = { { - {&w_monsec, align_left, align_bottom}, - {&w_sttime, align_left, align_bottom}, + {&w_monsec, align_left, align_top}, + {&w_sttime, align_left, align_top}, {&w_coord, align_right, align_top}, {&w_fps, align_right, align_top}, {NULL} @@ -170,8 +170,8 @@ static hu_widget_t boom_widgets[MAX_HUDS][MAX_WIDGETS] = { {&w_weapon, align_right, align_bottom}, {&w_keys, align_left, align_bottom}, - {&w_monsec, align_left, align_top}, - {&w_sttime, align_left, align_top}, + {&w_monsec, align_left, align_bottom}, + {&w_sttime, align_left, align_bottom}, {&w_coord , align_right, align_top}, {&w_fps, align_right, align_top}, {NULL}