X-Git-Url: https://git.sesse.net/?p=ccbs;a=blobdiff_plain;f=bigscreen%2Fgroupscreen.cpp;h=9150906d17f8645db7720070a8c77ccf7413249f;hp=6e59053d6b8ed79a35acf8473e6021df27d5c356;hb=43f74cfb6708acd8f2c3e7f1ce9e800da28bc0f9;hpb=a196d04403f86dd53aae693be27491ded1eecb47 diff --git a/bigscreen/groupscreen.cpp b/bigscreen/groupscreen.cpp index 6e59053..9150906 100644 --- a/bigscreen/groupscreen.cpp +++ b/bigscreen/groupscreen.cpp @@ -33,7 +33,10 @@ void GroupScreen::draw(unsigned char *buf) unsigned x = 90; for (std::vector::const_iterator j = i->scores.begin(); j != i->scores.end(); ++j) { - my_draw_text(widestring("1234"), buf, x, y, true, 255, 255, 255); + char text[16]; + sprintf(text, "%u", j->score); + + my_draw_text(text, buf, x, y, true, 255, 255, 255); x += 60; }