diff options
| author | Pokechu22 <Pokechu022@gmail.com> | 2022-10-24 22:36:43 -0700 |
|---|---|---|
| committer | Pokechu22 <Pokechu022@gmail.com> | 2022-10-24 22:36:43 -0700 |
| commit | 574939b6831517857d46dffc7fad4ca259e88183 (patch) | |
| tree | 7d08cc9ec306dbce9f2f78d9669cfe5ec1100645 /Source/Core/VideoCommon/VertexLoaderManager.cpp | |
| parent | 4787b25a7f2acfb36a1e49a663c433640e6e3527 (diff) | |
VideoCommon: Treat invalid normal count as NormalTangentBinormal
See https://bugs.dolphin-emu.org/issues/13070.
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoaderManager.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoaderManager.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
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 || |
