aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/facade/SDLContext.cpp
diff options
context:
space:
mode:
authorWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-11-14 13:44:33 +0100
committerWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-11-14 13:44:33 +0100
commit22a3ba4d0773d6010704ec494a08f5d95f564a94 (patch)
treec1b9e15c852cc20777251b4cd514bc5650c9d18e /src/crepe/facade/SDLContext.cpp
parentd6c48b5b955336f7e2832bae7b7eca4afdb02cc4 (diff)
parentbe1e97bc7a494963ab1567492fafcda99e36f683 (diff)
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 46230b4..236bf8c 100644
--- a/src/crepe/facade/SDLContext.cpp
+++ b/src/crepe/facade/SDLContext.cpp
@@ -159,7 +159,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 *)>>