From b73955fe1ca6440f6e1c87b25f32b981efcddcce Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Sun, 27 Sep 2020 17:06:12 +0200 Subject: [PATCH] Fix a preprocessor conditional for WIN32 --- src/sfizz/FilePool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sfizz/FilePool.cpp b/src/sfizz/FilePool.cpp index 3ec13faa..0fed17a0 100644 --- a/src/sfizz/FilePool.cpp +++ b/src/sfizz/FilePool.cpp @@ -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);