CLineRenderer: Silence -Wmaybe-uninitialized warning

We can just initialize maxTriVerts to zero to prevent warnings from
occurring.
This commit is contained in:
Lioncash 2020-03-12 19:14:00 -04:00
parent df4487bae8
commit c37b3df27b
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ CLineRenderer::CLineRenderer(boo::IGraphicsDataFactory::Context& ctx, EPrimitive
}
m_textured = bool(texture);
u32 maxTriVerts;
u32 maxTriVerts = 0;
switch (mode) {
case EPrimitiveMode::Lines:
case EPrimitiveMode::LineStrip:
@ -59,7 +59,7 @@ CLineRenderer::CLineRenderer(EPrimitiveMode mode, u32 maxVerts, const boo::ObjTo
}
m_textured = bool(texture);
u32 maxTriVerts;
u32 maxTriVerts = 0;
switch (mode) {
case EPrimitiveMode::Lines:
case EPrimitiveMode::LineStrip: