(Wii U) Render font lines with correct spacing

No idea about this one, borrowed code from the Vita and it makes 
multi-line rendering look correct again
This commit is contained in:
Ash Logan 2021-07-20 20:05:44 +10:00
parent 20e70f9caa
commit 60c32fe494

View File

@ -258,7 +258,7 @@ static void wiiu_font_render_message(
return;
}
line_height = scale / line_metrics->height;
line_height = line_metrics->height * scale / wiiu->vp.height;
for (;;)
{