aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/facade/SDLContext.cpp
diff options
context:
space:
mode:
authorheavydemon21 <nielsstunnebrink1@gmail.com>2024-11-14 10:23:04 +0100
committerheavydemon21 <nielsstunnebrink1@gmail.com>2024-11-14 10:23:04 +0100
commit5e6b80ba9fe18143b994a301ab0ba1ba54072b43 (patch)
tree2784b5bdb49dba729884af5d4fd80dd9e44776d1 /src/crepe/facade/SDLContext.cpp
parent767f40a61952892d60d204ecaaffa07e7e396d28 (diff)
Working color, fucked up git merge
Diffstat (limited to 'src/crepe/facade/SDLContext.cpp')
-rw-r--r--src/crepe/facade/SDLContext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/facade/SDLContext.cpp b/src/crepe/facade/SDLContext.cpp
index 4bc4cf8..c78a3ca 100644
--- a/src/crepe/facade/SDLContext.cpp
+++ b/src/crepe/facade/SDLContext.cpp
@@ -174,7 +174,7 @@ SDLContext::texture_from_path(const std::string & path) {
SDL_Surface * tmp = IMG_Load(path.c_str());
if (tmp == nullptr) {
- tmp = IMG_Load("../asset/texture/ERROR.png");
+ tmp = IMG_Load("../asset/texture/ERROR.png");
}
std::unique_ptr<SDL_Surface, std::function<void(SDL_Surface *)>>