Fix a preprocessor conditional for WIN32
This commit is contained in:
parent
6223fe5336
commit
b73955fe1c
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue