aboutsummaryrefslogtreecommitdiffstats
path: root/window.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'window.cpp')
-rw-r--r--window.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/window.cpp b/window.cpp
index 3813a3c..e8677a8 100644
--- a/window.cpp
+++ b/window.cpp
@@ -70,3 +70,15 @@ SDL_Texture *sdl2LoadTexture(const char *path)
return tex;
}
+SDL_Surface *sdl2LoadSolid(const char *path)
+{
+ auto surface = IMG_Load(path);
+
+ if (surface == nullptr) {
+ std::cerr << "Unable to load image " << path << '!' << std::endl;
+ std::cerr << "SDL error: " << IMG_GetError() << std::endl;
+ }
+
+ return surface;
+}
+