mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- Fix palette drawer crash
This commit is contained in:
parent
e0defb060d
commit
01fd404133
1 changed files with 3 additions and 3 deletions
|
@ -1463,7 +1463,7 @@ void ScreenTriangle::DrawSpan8(int y, int x0, int x1, const TriDrawTriangleArgs
|
||||||
|
|
||||||
auto colormaps = args->uniforms->BaseColormap();
|
auto colormaps = args->uniforms->BaseColormap();
|
||||||
|
|
||||||
const uint32_t *texPixels = (const uint32_t*)args->uniforms->TexturePixels();
|
const uint8_t *texPixels = args->uniforms->TexturePixels();
|
||||||
int texWidth = args->uniforms->TextureWidth();
|
int texWidth = args->uniforms->TextureWidth();
|
||||||
int texHeight = args->uniforms->TextureHeight();
|
int texHeight = args->uniforms->TextureHeight();
|
||||||
|
|
||||||
|
@ -1476,8 +1476,8 @@ void ScreenTriangle::DrawSpan8(int y, int x0, int x1, const TriDrawTriangleArgs
|
||||||
|
|
||||||
float *zbufferLine = args->zbuffer + args->stencilPitch * 8 * y;
|
float *zbufferLine = args->zbuffer + args->stencilPitch * 8 * y;
|
||||||
|
|
||||||
uint32_t *dest = (uint32_t*)args->dest;
|
uint8_t *dest = (uint8_t*)args->dest;
|
||||||
uint32_t *destLine = dest + args->pitch * y;
|
uint8_t *destLine = dest + args->pitch * y;
|
||||||
|
|
||||||
int x = x0;
|
int x = x0;
|
||||||
while (x < x1)
|
while (x < x1)
|
||||||
|
|
Loading…
Reference in a new issue