From c803bf18495e20cc3d1da2d7e59dab5ef9d6affe Mon Sep 17 00:00:00 2001 From: Megamouse Date: Thu, 31 Mar 2022 22:01:02 +0200 Subject: [PATCH] soundtouch: fix debug build --- 3rdparty/SoundTouch/soundtouch.vcxproj | 3 ++- 3rdparty/cubeb/libcubeb.vcxproj | 2 +- 3rdparty/zlib/zlib.vcxproj | 2 +- rpcs3/Cubeb.vcxproj | 2 +- rpcs3/Emu/system_utils.cpp | 4 ++-- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/3rdparty/SoundTouch/soundtouch.vcxproj b/3rdparty/SoundTouch/soundtouch.vcxproj index 77ed4bb9b2..e46a6aad76 100644 --- a/3rdparty/SoundTouch/soundtouch.vcxproj +++ b/3rdparty/SoundTouch/soundtouch.vcxproj @@ -69,9 +69,10 @@ false SOUNDTOUCH_ALLOW_SSE;ST_NO_EXCEPTION_HANDLING;USE_MULTICH_ALWAYS;SOUNDTOUCH_FLOAT_SAMPLES;%(PreprocessorDefinitions) ./soundtouch/source/SoundTouch;./soundtouch/include;%(AdditionalIncludeDirectories) + ProgramDatabase - + \ No newline at end of file diff --git a/3rdparty/cubeb/libcubeb.vcxproj b/3rdparty/cubeb/libcubeb.vcxproj index 2564552ab9..f092e7322b 100644 --- a/3rdparty/cubeb/libcubeb.vcxproj +++ b/3rdparty/cubeb/libcubeb.vcxproj @@ -84,4 +84,4 @@ - + \ No newline at end of file diff --git a/3rdparty/zlib/zlib.vcxproj b/3rdparty/zlib/zlib.vcxproj index 2f39f358f2..59c6f6127a 100644 --- a/3rdparty/zlib/zlib.vcxproj +++ b/3rdparty/zlib/zlib.vcxproj @@ -71,7 +71,7 @@ true $(DisableSpecificWarnings);4127;4131;4242;4244 $(TreatWarningAsError) - MultiThreadedDebugDLL + MultiThreadedDebug true diff --git a/rpcs3/Cubeb.vcxproj b/rpcs3/Cubeb.vcxproj index 47e0bf8a69..c46472f9e4 100644 --- a/rpcs3/Cubeb.vcxproj +++ b/rpcs3/Cubeb.vcxproj @@ -60,4 +60,4 @@ - + \ No newline at end of file diff --git a/rpcs3/Emu/system_utils.cpp b/rpcs3/Emu/system_utils.cpp index 867c0032b9..9038e53684 100644 --- a/rpcs3/Emu/system_utils.cpp +++ b/rpcs3/Emu/system_utils.cpp @@ -70,12 +70,12 @@ namespace rpcs3::utils u32 check_user(const std::string& user) { u32 id = 0; - + if (user.size() == 8) { std::from_chars(&user.front(), &user.back() + 1, id); } - + return id; }