Browse Source

ref_soft: fix blocksize

pull/2/head
mittorn 5 years ago
parent
commit
8a99d64139
  1. 4
      r_surf.c

4
r_surf.c

@ -579,7 +579,7 @@ void R_DrawSurface (void) @@ -579,7 +579,7 @@ void R_DrawSurface (void)
R_DrawSurfaceBlock8_World();
soffset = soffset + horzblockstep;
soffset = soffset + blocksize;
if (soffset >= smax)
soffset = 0;
@ -608,7 +608,7 @@ void R_DrawSurface (void) @@ -608,7 +608,7 @@ void R_DrawSurface (void)
(*pblockdrawer)();
soffset = soffset + horzblockstep;
soffset = soffset + blocksize;
if (soffset >= smax)
soffset = 0;

Loading…
Cancel
Save