From 5e2ba2bdfc1588e45eed92fc7ddfbdbcce2f4c4b Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 2 Nov 2015 22:11:01 +0100 Subject: [PATCH] Cleanup --- menu/drivers/zarch.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/menu/drivers/zarch.c b/menu/drivers/zarch.c index 7cbe424041..ab4ca7d7e8 100644 --- a/menu/drivers/zarch.c +++ b/menu/drivers/zarch.c @@ -323,7 +323,8 @@ static void zarch_zui_draw_text(zui_t *zui, uint32_t color, int x, int y, const { struct font_params params = {0}; - /* need to use height-y because the gl font renderer uses a different mvp */ + /* need to use height-y because the font renderer + * uses a different model-view-projection (MVP). */ params.x = x / (float)zui->width; params.y = (zui->height - y) / (float)zui->height; params.scale = 1.0;