mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
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:
parent
2d6f24a3f2
commit
97ebb029d6
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue