diff --git a/util/test/demos/d3d12/d3d12_shader_debugdata_zoo.cpp b/util/test/demos/d3d12/d3d12_shader_debugdata_zoo.cpp index 3f07dc37b..7cc428ebf 100644 --- a/util/test/demos/d3d12/d3d12_shader_debugdata_zoo.cpp +++ b/util/test/demos/d3d12/d3d12_shader_debugdata_zoo.cpp @@ -188,29 +188,29 @@ struct TestChild : TestParent // TEST_DEBUG_VAR_END if(testIndex == 0) - { - testResult = intVal; - } - else if(testIndex == 1) - { - testResult = intVal * 2; - } - else if(testIndex == 2) - { - testResult = intVal / 2; - } - else if(testIndex == 3) - { - testResult.x = testStruct.anon.a.x; - testResult.y = testStruct.anon.b.x; - } - else if(testIndex == 4) { testResult.x = intVal * 7; testResult.y = intVal * 5; SET_DATA(testIndex, testResult); EARLY_RETURN; } + else if(testIndex == 1) + { + testResult = intVal; + } + else if(testIndex == 2) + { + testResult = intVal * 2; + } + else if(testIndex == 3) + { + testResult = intVal / 2; + } + else if(testIndex == 4) + { + testResult.x = testStruct.anon.a.x; + testResult.y = testStruct.anon.b.x; + } else if(testIndex == 5) { testResult.x = testChild.i;