diff --git a/src/Renderer.cpp b/src/Renderer.cpp index 0899f18..959f0d8 100644 --- a/src/Renderer.cpp +++ b/src/Renderer.cpp @@ -260,7 +260,7 @@ Texture * Renderer::LoadTexture(std::string path) { return &textures[path]; } else { - SDL_Log("Error: Could not load texture \"%s\"\n", path.c_str()); + SDL_Log("Error: Could not load texture \"%s\"\n\t%s\n", path.c_str(), SDL_GetError()); return nullptr; } }