diff options
| author | Elliptic Ellipsis <elliptic.ellipsis@gmail.com> | 2022-01-17 00:19:13 +0000 |
|---|---|---|
| committer | Elliptic Ellipsis <elliptic.ellipsis@gmail.com> | 2022-01-17 00:19:13 +0000 |
| commit | f658ba3e7134afaa5c9d43f0c9b823f00119496a (patch) | |
| tree | 6c1eabad3250e9362a140eac1dbc7facb1bf7355 /ZAPD/ZTexture.cpp | |
| parent | bf16ff7c4c409358a53793b72260b1d8e474cf0c (diff) | |
Fix use of filesystem in ZTexture
Diffstat (limited to 'ZAPD/ZTexture.cpp')
| -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"); |
