Commit dd51787e07a307fb0aa82f0ac36086690b4aeb89

Cameron Cawley 2022-09-08T15:53:25

Fix SDL_PIXELFORMAT_INDEX1LSB test case

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/test/testautomation_surface.c b/test/testautomation_surface.c
index 63d4c29..9b38066 100644
--- a/test/testautomation_surface.c
+++ b/test/testautomation_surface.c
@@ -693,7 +693,7 @@ surface_testOverflow(void *arg)
     SDLTest_AssertCheck(surface != NULL, "17px * 1 bit per px fits in 3 bytes: %s",
                         surface != NULL ? "(success)" : SDL_GetError());
     SDL_FreeSurface(surface);
-    surface = SDL_CreateRGBSurfaceFrom(buf, 7, 1, 1, 3, 0, 0, 0, 0);
+    surface = SDL_CreateRGBSurfaceFrom(buf, 17, 1, 1, 3, 0, 0, 0, 0);
     SDLTest_AssertCheck(surface != NULL, "17px * 1 bit per px fits in 3 bytes: %s",
                         surface != NULL ? "(success)" : SDL_GetError());
     SDL_FreeSurface(surface);