diff --git a/quiz/src/runner.cpp b/quiz/src/runner.cpp index 031ddb31b..17e3aacb7 100644 --- a/quiz/src/runner.cpp +++ b/quiz/src/runner.cpp @@ -13,8 +13,9 @@ void quiz_print(const char * message) { #else static int line_y = 0; KDContext * ctx = KDIonContext::sharedContext(); - int line_height = KDText::stringSize("M").height(); - ctx->drawString(message, KDPoint(0, line_y)); + const KDFont * font = KDFont::LargeFont; + int line_height = font->glyphSize().height(); + ctx->drawString(message, KDPoint(0, line_y), font); line_y += line_height; if (line_y > Ion::Display::Height) { line_y = 0;