We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5aea6d commit 80aa8dfCopy full SHA for 80aa8df
1 file changed
src/editor/textures/TextureManager.cpp
@@ -31,9 +31,9 @@ using namespace Sickle::Editor::Textures;
31
32
struct WADInputStreamGIO : WAD::WADInputStream
33
{
34
- WADInputStreamGIO(std::string const &wad_path)
+ WADInputStreamGIO(std::filesystem::path const &wad_path)
35
36
- auto const file = Gio::File::create_for_path(wad_path);
+ auto const file = Gio::File::create_for_path(wad_path.string());
37
_stream = file->read();
38
}
39
virtual ~WADInputStreamGIO()=default;
0 commit comments