From 3249565c84380988147146263597192830dd6371 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 20 Feb 2005 17:04:27 +0000 Subject: [PATCH] Moved the bottom text a bit up, to get it more readable. --- bigscreen/groupscreen.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bigscreen/groupscreen.cpp b/bigscreen/groupscreen.cpp index d169bdb..b7f760c 100644 --- a/bigscreen/groupscreen.cpp +++ b/bigscreen/groupscreen.cpp @@ -308,17 +308,17 @@ void GroupScreen::draw(unsigned char *buf) if (next_song != NULL) { widestring text = widestring("Next player: ") + next_player->nick; unsigned this_width = my_draw_text(text, NULL, 24.0); - my_draw_text(text, buf, 24.0, 400 - this_width/2, 450); + my_draw_text(text, buf, 24.0, 400 - this_width/2, 420); if (next_song->song.id != -1) { this_width = my_draw_text(next_song->song.title, NULL, 20.0); - my_draw_text(next_song->song.title, buf, 20.0, 400 - this_width/2, 487); + my_draw_text(next_song->song.title, buf, 20.0, 400 - this_width/2, 457); // fetch the high score later text = widestring("High score: ") + widestring(pqxx::to_string(1234)) + widestring(", by dufF in Challenge Cup 1, 2004"); this_width = my_draw_text(text, NULL, 16.0); - my_draw_text(text, buf, 16.0, 400 - this_width/2, 517); + my_draw_text(text, buf, 16.0, 400 - this_width/2, 487); } // only show lead/win/qualify for the last song @@ -338,7 +338,7 @@ void GroupScreen::draw(unsigned char *buf) conn.perform(FetchMaxScoreForPlayer(tournament, next_player->id, round, &max_score_this_song)); } - unsigned y = 540; + unsigned y = 520; // see what score this player must beat to lead unsigned lead_beat = 0, win_beat = 0; -- 2.39.2