Change zero input into a comment instead of LOG_TEST_CASE everyone into madness

This commit is contained in:
patrickvl 2020-05-08 12:13:55 +02:00
parent ba2d18d17f
commit 6d9dfb2dde
1 changed files with 1 additions and 1 deletions

View File

@ -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 : // Validate & correct input, to detect test cases and avoid trouble when using g_Xbox_MultiSampleType :
if (value == 0) { if (value == 0) {
LOG_TEST_CASE("Correcting zero to X_D3DMULTISAMPLE_NONE"); // Correcting zero to X_D3DMULTISAMPLE_NONE
value = XTL::X_D3DMULTISAMPLE_NONE; value = XTL::X_D3DMULTISAMPLE_NONE;
} }
if (value & ~XTL::X_D3DMULTISAMPLE_KNOWN_MASK) { if (value & ~XTL::X_D3DMULTISAMPLE_KNOWN_MASK) {