projects
/
ccbs
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a196d04
)
Show the real score instead of 1234.
author
Steinar H. Gunderson
<sesse@samfundet.no>
Sat, 19 Feb 2005 16:37:03 +0000
(16:37 +0000)
committer
Steinar H. Gunderson
<sesse@samfundet.no>
Sat, 19 Feb 2005 16:37:03 +0000
(16:37 +0000)
bigscreen/groupscreen.cpp
patch
|
blob
|
history
diff --git
a/bigscreen/groupscreen.cpp
b/bigscreen/groupscreen.cpp
index
6e59053
..
9150906
100644
(file)
--- a/
bigscreen/groupscreen.cpp
+++ b/
bigscreen/groupscreen.cpp
@@
-33,7
+33,10
@@
void GroupScreen::draw(unsigned char *buf)
unsigned x = 90;
for (std::vector<Score>::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;
}