summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfig02 <fig02srl@gmail.com>2022-01-16 19:25:53 -0500
committerGitHub <noreply@github.com>2022-01-16 19:25:53 -0500
commit0ba78130478ee1272bc0e2f2fec2d162e7f7f995 (patch)
tree6c1eabad3250e9362a140eac1dbc7facb1bf7355
parentbf16ff7c4c409358a53793b72260b1d8e474cf0c (diff)
parentf658ba3e7134afaa5c9d43f0c9b823f00119496a (diff)
Merge pull request #234 from EllipticEllipsis/fs_fix
Fix use of filesystem in ZTexture
-rw-r--r--ZAPD/ZTexture.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ZAPD/ZTexture.cpp b/ZAPD/ZTexture.cpp
index 0d72d9c..255d308 100644
--- a/ZAPD/ZTexture.cpp
+++ b/ZAPD/ZTexture.cpp
@@ -722,7 +722,7 @@ void ZTexture::Save(const fs::path& outFolder)
if (!Directory::Exists(outPath.string()))
Directory::CreateDirectory(outPath.string());
- std::filesystem::__cxx11::path outFileName;
+ fs::path outFileName;
if (!dWordAligned)
outFileName = outPath / (outName + ".u32" + "." + GetExternalExtension() + ".png");