From 6d9dfb2dde0c11366a485be42467586c14b58439 Mon Sep 17 00:00:00 2001 From: patrickvl Date: Fri, 8 May 2020 12:13:55 +0200 Subject: [PATCH] Change zero input into a comment instead of LOG_TEST_CASE everyone into madness --- src/core/hle/D3D8/Direct3D9/Direct3D9.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/D3D8/Direct3D9/Direct3D9.cpp b/src/core/hle/D3D8/Direct3D9/Direct3D9.cpp index ae29c2b5d..86e681e3f 100644 --- a/src/core/hle/D3D8/Direct3D9/Direct3D9.cpp +++ b/src/core/hle/D3D8/Direct3D9/Direct3D9.cpp @@ -2837,7 +2837,7 @@ void SetXboxMultiSampleType(XTL::X_D3DMULTISAMPLE_TYPE value) { // Validate & correct input, to detect test cases and avoid trouble when using g_Xbox_MultiSampleType : if (value == 0) { - LOG_TEST_CASE("Correcting zero to X_D3DMULTISAMPLE_NONE"); + // Correcting zero to X_D3DMULTISAMPLE_NONE value = XTL::X_D3DMULTISAMPLE_NONE; } if (value & ~XTL::X_D3DMULTISAMPLE_KNOWN_MASK) {