mirror of https://github.com/libsdl-org/SDL
Fixed build
This commit is contained in:
parent
6a00ae7e58
commit
64972b4184
|
@ -365,7 +365,7 @@ static int render_testPrimitivesWithViewport(void *arg)
|
|||
|
||||
pixel = 0;
|
||||
CHECK_FUNC(SDL_RenderReadPixels, (renderer, NULL, SDL_PIXELFORMAT_RGBA8888, &pixel, sizeof(pixel)));
|
||||
SDLTest_AssertCheck(pixel == 0xFFFFFFFF, "Validate diagonal line drawing with viewport, expected 0xFFFFFFFF, got 0x%.8x", pixel);
|
||||
SDLTest_AssertCheck(pixel == 0xFFFFFFFF, "Validate diagonal line drawing with viewport, expected 0xFFFFFFFF, got 0x%.8x", (unsigned int)pixel);
|
||||
|
||||
return TEST_COMPLETED;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue