summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/FLD.hpp1
-rw-r--r--src/image.cpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/FLD.hpp b/src/FLD.hpp
index 9abe34a..d4bf4bf 100644
--- a/src/FLD.hpp
+++ b/src/FLD.hpp
@@ -48,6 +48,7 @@ public:
Uint f = NONE;
};
struct Image {
+ std::string path = "";
bool valid = true;
SDL_Texture *ptr = nullptr;
int width = 0;
diff --git a/src/image.cpp b/src/image.cpp
index f9fb1e2..177968a 100644
--- a/src/image.cpp
+++ b/src/image.cpp
@@ -40,6 +40,7 @@ FLD::image(const std::string &path)
}
images[path] = {
+ .path = path,
.ptr = tex,
.width = width,
.height = height