From 51862135d6df263c953c91e486e803fb985ac2ed Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Sun, 20 Jun 2021 17:02:46 -0700 Subject: [PATCH] Software: Remove texinfo.sourcerow == SourceRow::Colors assert These asserts were removed for the hardware renderer in #3684. --- Source/Core/VideoBackends/Software/TransformUnit.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/Core/VideoBackends/Software/TransformUnit.cpp b/Source/Core/VideoBackends/Software/TransformUnit.cpp index 0c7fccaf0b..c7d2717d39 100644 --- a/Source/Core/VideoBackends/Software/TransformUnit.cpp +++ b/Source/Core/VideoBackends/Software/TransformUnit.cpp @@ -416,14 +416,12 @@ void TransformTexCoord(const InputVertexData* src, OutputVertexData* dst) } break; case TexGenType::Color0: - ASSERT(texinfo.sourcerow == SourceRow::Colors); ASSERT(texinfo.inputform == TexInputForm::AB11); dst->texCoords[coordNum].x = (float)dst->color[0][0] / 255.0f; dst->texCoords[coordNum].y = (float)dst->color[0][1] / 255.0f; dst->texCoords[coordNum].z = 1.0f; break; case TexGenType::Color1: - ASSERT(texinfo.sourcerow == SourceRow::Colors); ASSERT(texinfo.inputform == TexInputForm::AB11); dst->texCoords[coordNum].x = (float)dst->color[1][0] / 255.0f; dst->texCoords[coordNum].y = (float)dst->color[1][1] / 255.0f;