Fix a preprocessor conditional for WIN32

This commit is contained in:
Jean Pierre Cimalando 2020-09-27 17:06:12 +02:00
parent 6223fe5336
commit b73955fe1c

View file

@ -133,7 +133,7 @@ bool sfz::FilePool::checkSample(std::string& filename) const noexcept
if (fs::exists(path, ec))
return true;
#if WIN32
#if defined(_WIN32)
return false;
#else
fs::path oldPath = std::move(path);