diff options
| author | fig02 <fig02srl@gmail.com> | 2022-01-16 19:25:53 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-16 19:25:53 -0500 |
| commit | 0ba78130478ee1272bc0e2f2fec2d162e7f7f995 (patch) | |
| tree | 6c1eabad3250e9362a140eac1dbc7facb1bf7355 | |
| parent | bf16ff7c4c409358a53793b72260b1d8e474cf0c (diff) | |
| parent | f658ba3e7134afaa5c9d43f0c9b823f00119496a (diff) | |
Merge pull request #234 from EllipticEllipsis/fs_fix
Fix use of filesystem in ZTexture
| -rw-r--r-- | ZAPD/ZTexture.cpp | 2 |
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"); |
