3rdparty/soundtouch: Fix -Wdeprecated-ofast warning

This commit is contained in:
Ty Lamontagne 2025-10-18 18:15:33 -04:00 committed by Ty
parent 38a35043a8
commit 1d0f6cc5b7

View File

@ -38,7 +38,7 @@ if(NOT "${CMAKE_BUILD_TYPE}" MATCHES "Debug")
if(MSVC)
target_compile_options(pcsx2-soundtouch PRIVATE /O2 /fp:fast)
else()
target_compile_options(pcsx2-soundtouch PRIVATE -Ofast)
target_compile_options(pcsx2-soundtouch PRIVATE -O3 -ffast-math)
endif()
endif()