mirror of
https://github.com/FWGS/xash3d-fwgs.git
synced 2026-08-05 03:24:56 +08:00
ref_soft: fix blocksize
This commit is contained in:
4
r_surf.c
4
r_surf.c
@@ -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)
|
||||
|
||||
(*pblockdrawer)();
|
||||
|
||||
soffset = soffset + horzblockstep;
|
||||
soffset = soffset + blocksize;
|
||||
if (soffset >= smax)
|
||||
soffset = 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user