Remove OpenGL flag for SDL_BlitSurface

This commit is contained in:
Justin Scofield
2022-07-24 00:00:48 -04:00
parent 54d4a340f7
commit 8e9636c0b5

View File

@@ -154,7 +154,7 @@ void Controller::CreateWindow() {
SDL_WINDOWPOS_UNDEFINED, // initial y position
1200, // width, in pixels
800, // height, in pixels
SDL_WINDOW_RESIZABLE | SDL_WINDOW_OPENGL),
SDL_WINDOW_RESIZABLE),
sdl_deleter());
}
}