mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix broken indenting in D_Display
This commit is contained in:
parent
84a4c7ba62
commit
78d4d3c3e9
1 changed files with 7 additions and 8 deletions
15
src/d_main.c
15
src/d_main.c
|
|
@ -573,16 +573,15 @@ static void D_Display(void)
|
||||||
rs_rendercalltime = I_GetTimeMicros() - rs_rendercalltime;
|
rs_rendercalltime = I_GetTimeMicros() - rs_rendercalltime;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (lastdraw)
|
if (lastdraw)
|
||||||
|
{
|
||||||
|
if (rendermode == render_soft)
|
||||||
{
|
{
|
||||||
if (rendermode == render_soft)
|
VID_BlitLinearScreen(screens[0], screens[1], vid.width*vid.bpp, vid.height, vid.width*vid.bpp, vid.rowbytes);
|
||||||
{
|
Y_ConsiderScreenBuffer();
|
||||||
VID_BlitLinearScreen(screens[0], screens[1], vid.width*vid.bpp, vid.height, vid.width*vid.bpp, vid.rowbytes);
|
usebuffer = true;
|
||||||
Y_ConsiderScreenBuffer();
|
|
||||||
usebuffer = true;
|
|
||||||
}
|
|
||||||
lastdraw = false;
|
|
||||||
}
|
}
|
||||||
|
lastdraw = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (gamestate == GS_LEVEL)
|
if (gamestate == GS_LEVEL)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue