1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-24 17:49:52 +01:00

fix for last commit

This commit is contained in:
FunkyFr3sh 2018-09-18 01:16:23 +02:00
parent 4211df4c29
commit 5bbf63a025

View File

@ -931,6 +931,8 @@ static BOOL TextureUploadTest()
static BOOL ShaderTest() static BOOL ShaderTest()
{ {
BOOL result = TRUE;
if (OpenGL_GotVersion3 && PaletteConvertProgram) if (OpenGL_GotVersion3 && PaletteConvertProgram)
{ {
memset(SurfaceTex, 0, SurfaceTexHeight * SurfaceTexWidth * sizeof(int)); memset(SurfaceTex, 0, SurfaceTexHeight * SurfaceTexWidth * sizeof(int));
@ -1009,7 +1011,10 @@ static BOOL ShaderTest()
for (i = 0; i < SurfaceTexHeight * SurfaceTexWidth; i++) for (i = 0; i < SurfaceTexHeight * SurfaceTexWidth; i++)
{ {
if (SurfaceTex[i] != 0x80808080) if (SurfaceTex[i] != 0x80808080)
return FALSE; {
result = FALSE;
break;
}
} }
} }
@ -1023,5 +1028,5 @@ static BOOL ShaderTest()
glBindFramebuffer(GL_FRAMEBUFFER, 0); glBindFramebuffer(GL_FRAMEBUFFER, 0);
} }
return TRUE; return result;
} }