mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 09:39:43 +01:00
Move y-position assignment into its most intended branch
This is a code style fix.
This commit is contained in:
parent
2709de9cf0
commit
b79f0daa5f
1 changed files with 1 additions and 1 deletions
|
@ -3447,9 +3447,9 @@ void editorrender( KeyPoll& key, Graphics& dwgfx, Game& game, mapclass& map, ent
|
|||
{
|
||||
if(ed.roomnamehide<12) ed.roomnamehide++;
|
||||
}
|
||||
dwgfx.footerrect.y = 230+ed.roomnamehide;
|
||||
if (dwgfx.translucentroomname)
|
||||
{
|
||||
dwgfx.footerrect.y = 230+ed.roomnamehide;
|
||||
SDL_BlitSurface(dwgfx.footerbuffer, NULL, dwgfx.backBuffer, &dwgfx.footerrect);
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue