mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 15:19:42 -06:00
Merge pull request #5168 from ligfx/vertexloadertestuninitialized
VertexLoaderTest: fix maybe-uninitialized warning
This commit is contained in:
@ -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);
|
||||||
|
Reference in New Issue
Block a user