mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Fix three (probably harmless) maybe-uninitialized warnings.
git-svn-id: https://svn.eduke32.com/eduke32@3017 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
132aebf1c1
commit
9f0824e79f
2 changed files with 2 additions and 2 deletions
|
@ -485,7 +485,7 @@ static playbackstatus MV_GetNextVOCBlock(VoiceNode *voice)
|
||||||
const uint8_t *ptr;
|
const uint8_t *ptr;
|
||||||
int32_t blocktype;
|
int32_t blocktype;
|
||||||
int32_t lastblocktype;
|
int32_t lastblocktype;
|
||||||
size_t blocklength;
|
size_t blocklength = 0;
|
||||||
uint32_t samplespeed = 0; // XXX: compiler-happy on synthesis
|
uint32_t samplespeed = 0; // XXX: compiler-happy on synthesis
|
||||||
uint32_t tc = 0;
|
uint32_t tc = 0;
|
||||||
int32_t packtype;
|
int32_t packtype;
|
||||||
|
|
|
@ -3671,7 +3671,7 @@ void C_Compile(const char *filenameortext, int32_t isfilename)
|
||||||
char *mptr = NULL;
|
char *mptr = NULL;
|
||||||
static char firstime=1;
|
static char firstime=1;
|
||||||
int32_t i,j;
|
int32_t i,j;
|
||||||
int32_t fs,fp;
|
int32_t fs=0,fp=0;
|
||||||
int32_t startcompiletime;
|
int32_t startcompiletime;
|
||||||
instype *oscriptPtr;
|
instype *oscriptPtr;
|
||||||
int32_t ostateCount = g_stateCount;
|
int32_t ostateCount = g_stateCount;
|
||||||
|
|
Loading…
Reference in a new issue