mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-22 10:19:01 +00:00
Merge pull request #5168 from ligfx/vertexloadertestuninitialized
VertexLoaderTest: fix maybe-uninitialized warning
This commit is contained in:
commit
67e950d02c
1 changed files with 2 additions and 0 deletions
|
@ -218,6 +218,8 @@ TEST_P(VertexLoaderParamTest, PositionAll)
|
||||||
f = *iter++;
|
f = *iter++;
|
||||||
g = *iter++;
|
g = *iter++;
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
FAIL() << "Unknown format";
|
||||||
}
|
}
|
||||||
ExpectOut(f * scale);
|
ExpectOut(f * scale);
|
||||||
ExpectOut(g * scale);
|
ExpectOut(g * scale);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue