# HG changeset patch # User Matti Hamalainen # Date 1526185956 -10800 # Node ID d1e2f7a22fb8a1d998ef49564d9ca0b7d85671d6 # Parent d863ef32b78864ddfa6c254ece6f075452f59e24 Oops, 8 vs 32bits. Didn't seem to matter anyhow, though. diff -r d863ef32b788 -r d1e2f7a22fb8 tools/ppl.c --- a/tools/ppl.c Sun May 13 06:59:26 2018 +0300 +++ b/tools/ppl.c Sun May 13 07:32:36 2018 +0300 @@ -207,7 +207,7 @@ if ((engine.screen = SDL_CreateRGBSurfaceWithFormat(0, engine.optScrWidth, engine.optScrHeight, - 8, SDL_PIXELFORMAT_RGBA32)) == NULL) + 32, SDL_PIXELFORMAT_RGBA32)) == NULL) { dmErrorMsg("Could not create SDL surface.\n"); return FALSE;