Make compiler happy: remove 'may be used uninitialized' warning in multivoc.c.

I'm not getting this warning (synthesis is) but I think it's justified because
the VOC block parsing code isn't terribly validating...

git-svn-id: https://svn.eduke32.com/eduke32@2364 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
helixhorned 2012-02-18 22:15:35 +00:00
parent 2d6f24a3f2
commit 97ebb029d6

View file

@ -484,7 +484,7 @@ static playbackstatus MV_GetNextVOCBlock(VoiceNode *voice)
int32_t blocktype;
int32_t lastblocktype;
uint32_t blocklength;
uint32_t samplespeed;
uint32_t samplespeed = 0; // XXX: compiler-happy on synthesis
uint32_t tc = 0;
int32_t packtype;
int32_t voicemode;