From 2e9f492b24cbcf7cca9e18161f944293aa35782c Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sat, 13 Dec 2014 18:36:28 -0800 Subject: [PATCH] Silence an initialization warning. Pretty sure it's wrong but this isn't that hot anyway. --- GPU/Common/SplineCommon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPU/Common/SplineCommon.cpp b/GPU/Common/SplineCommon.cpp index 1b2d3a064b..e00ab7ea50 100644 --- a/GPU/Common/SplineCommon.cpp +++ b/GPU/Common/SplineCommon.cpp @@ -242,7 +242,7 @@ void _SplinePatchFullQuality(u8 *&dest, u16 *indices, int &count, const SplineP if (u < 0.0f) u = 0.0f; SimpleVertex *vert = &vertices[tile_v * (patch_div_s + 1) + tile_u]; - Vec4f vert_color; + Vec4f vert_color(0, 0, 0, 0); vert->pos.SetZero(); if (origVertType & GE_VTYPE_NRM_MASK) { vert->nrm.SetZero();