diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-08-06 10:32:26 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-08-06 10:32:26 -0400 |
commit | 779fd068b6aadef909aefdd25d6ec4086300dde2 (patch) | |
tree | bdfe50ccc58fb2995968f8191935eec25bc072f2 /include/components/solid.hpp | |
parent | 189afb447e2c76e5dd5e4550e786c5175a828cbc (diff) |
easier initializaton
Diffstat (limited to 'include/components/solid.hpp')
-rw-r--r-- | include/components/solid.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/components/solid.hpp b/include/components/solid.hpp index d02d229..87d18e3 100644 --- a/include/components/solid.hpp +++ b/include/components/solid.hpp @@ -6,11 +6,12 @@ #include <algorithm> #include <cstdint> +#include <string> class Solid { public: - Solid(const char *path) { - bitmap = sdl2LoadSolid(path); + Solid(std::string path) { + bitmap = sdl2LoadSolid(path.c_str()); } ~Solid() { |