From a11ac5a687501da0dadb6fbb0689d424bc74b4ab Mon Sep 17 00:00:00 2001 From: raziel1000 Date: Thu, 25 Jul 2024 01:15:44 -0600 Subject: [PATCH] ... --- src/sdl_window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sdl_window.cpp b/src/sdl_window.cpp index 6d3e6848..4570b64e 100644 --- a/src/sdl_window.cpp +++ b/src/sdl_window.cpp @@ -20,7 +20,7 @@ namespace Frontend { WindowSDL::WindowSDL(s32 width_, s32 height_, Input::GameController* controller_, std::string_view game_title) - : width{width_}, height{height_}, controller{controller_}{ + : width{width_}, height{height_}, controller{controller_} { if (SDL_Init(SDL_INIT_VIDEO) < 0) { UNREACHABLE_MSG("Failed to initialize SDL video subsystem: {}", SDL_GetError()); }