From faeba2bcaac86f99ae0a6dad5f8d24d2b26ffd28 Mon Sep 17 00:00:00 2001 From: Robert Date: Thu, 28 Oct 2021 23:46:44 +0200 Subject: [PATCH] Added check fo sdl initialization --- src/main.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 39c8436..99d5173 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -18,6 +18,12 @@ int main(int argc, char** argv) SDL_Init(SDL_INIT_VIDEO); + if(!SDL_WasInit(SDL_INIT_VIDEO)) + { + std::cerr << "Failed to initialize SDL:\n" << SDL_GetError() << std::endl; + return -1; + } + SDL_Window* window = SDL_CreateWindow("Gameboy Emulator", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, width, height, SDL_WINDOW_SHOWN); { std::cerr << "Failed to create window:\n" << SDL_GetError() << std::endl;