added par time to levels

This commit is contained in:
2011-03-30 10:45:22 +02:00
parent 48bf4a4a62
commit 4b63d0beba
4 changed files with 95 additions and 7 deletions
+4
View File
@@ -128,6 +128,10 @@ void Label (int id, const char* caption, int x, int y) {
assert (view);
view->DrawGLStringMeasure(caption, &width, &height);
SelectFont("console.ttf size=23 color=#808080");
view->DrawGLString(x - 1 , y + height * 0.5 + 1, caption);
SelectFont("console.ttf size=23 color=#ffffff");
view->DrawGLString(x , y + height * 0.5, caption);
}
}