From 574939b6831517857d46dffc7fad4ca259e88183 Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Mon, 24 Oct 2022 22:36:43 -0700 Subject: VideoCommon: Treat invalid normal count as NormalTangentBinormal See https://bugs.dolphin-emu.org/issues/13070. --- Source/Core/VideoCommon/VertexLoaderManager.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'Source/Core/VideoCommon/VertexLoaderManager.cpp') diff --git a/Source/Core/VideoCommon/VertexLoaderManager.cpp b/Source/Core/VideoCommon/VertexLoaderManager.cpp index 08dbe8a4d5..55f3514486 100644 --- a/Source/Core/VideoCommon/VertexLoaderManager.cpp +++ b/Source/Core/VideoCommon/VertexLoaderManager.cpp @@ -270,11 +270,9 @@ static void CheckCPConfiguration(int vtx_attr_group) num_xf_normals = 1; break; case NormalCount::NormalTangentBinormal: + case NormalCount::Invalid: // see https://bugs.dolphin-emu.org/issues/13070 num_xf_normals = 3; break; - default: - PanicAlertFmt("xfmem.invtxspec.numnormals is invalid: {}", xfmem.invtxspec.numnormals); - break; } if (num_cp_colors != xfmem.invtxspec.numcolors || num_cp_normals != num_xf_normals || -- cgit v1.2.3