mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-05-05 20:06:42 +02: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++;
|
if(ed.roomnamehide<12) ed.roomnamehide++;
|
||||||
}
|
}
|
||||||
dwgfx.footerrect.y = 230+ed.roomnamehide;
|
|
||||||
if (dwgfx.translucentroomname)
|
if (dwgfx.translucentroomname)
|
||||||
{
|
{
|
||||||
|
dwgfx.footerrect.y = 230+ed.roomnamehide;
|
||||||
SDL_BlitSurface(dwgfx.footerbuffer, NULL, dwgfx.backBuffer, &dwgfx.footerrect);
|
SDL_BlitSurface(dwgfx.footerbuffer, NULL, dwgfx.backBuffer, &dwgfx.footerrect);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue