1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-13 23:27:12 +00:00

Width, but not height, must be multiple of 32

This commit is contained in:
Nick Briggs 2021-11-08 21:28:06 -08:00
parent fab10fc71f
commit e5b8248465

View File

@ -555,9 +555,8 @@ void process_SDLevents() {
}
int init_SDL(char *windowtitle, int w, int h, int s) {
sdl_pixelscale = s;
// must be multiples of 32
w = w / 32 * 32;
h = h / 32 * 32;
// width must be multiple of 32
w = (w + 31) / 32 * 32;
sdl_displaywidth = w;
sdl_displayheight = h;
sdl_windowwidth = w * s;