diff --git a/gfx/drivers_font/caca_font.c b/gfx/drivers_font/caca_font.c index 05b2d6185e..349bd7ab1a 100644 --- a/gfx/drivers_font/caca_font.c +++ b/gfx/drivers_font/caca_font.c @@ -112,16 +112,15 @@ static void caca_render_msg(video_frame_info_t *video_info, switch (align) { - case TEXT_ALIGN_LEFT: - newX = x * width * scale; - break; case TEXT_ALIGN_RIGHT: newX = (x * width * scale) - strlen(msg); break; case TEXT_ALIGN_CENTER: newX = (x * width * scale) - (strlen(msg) / 2); break; + case TEXT_ALIGN_LEFT: default: + newX = x * width * scale; break; }