Minor indentation style fix in Render.cpp

This used 2-space indentation for one level, as well as }else{ on a
single line.
This commit is contained in:
Dav999 2023-12-08 23:28:44 +01:00 committed by Misa Elizabeth Kai
parent e638544665
commit 82aef30649
1 changed files with 6 additions and 4 deletions

View File

@ -577,10 +577,12 @@ static void menurender(void)
{ {
if (Credits::translators[i][0] != ' ') if (Credits::translators[i][0] != ' ')
{ {
yofs += 5; yofs += 5;
font::print(PR_CJK_HIGH, 80, yofs, loc::gettext(Credits::translators[i]), tr, tg, tb); font::print(PR_CJK_HIGH, 80, yofs, loc::gettext(Credits::translators[i]), tr, tg, tb);
}else{ }
font::print(PR_FONT_8X8, 80, yofs, Credits::translators[i], tr, tg, tb); else
{
font::print(PR_FONT_8X8, 80, yofs, Credits::translators[i], tr, tg, tb);
} }
yofs += 10; yofs += 10;
} }