mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
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:
parent
e638544665
commit
82aef30649
1 changed files with 6 additions and 4 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue