Skip to content

Commit

Permalink
Fix a preprocessor conditional for WIN32
Browse files Browse the repository at this point in the history
  • Loading branch information
jpcima committed Sep 27, 2020
1 parent 6223fe5 commit b73955f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sfizz/FilePool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit b73955f

Please sign in to comment.