mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-26 09:58:20 +01:00
Fix compiler warning in non-debug case.
This commit is contained in:
parent
95a70862be
commit
dd666472a3
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ ce_dictionary_make( CEAppGlobals* globals, XP_UCHAR* dictName )
|
|||
|
||||
while( !!ptr ) { /* lets us break.... */
|
||||
XP_U32 offset;
|
||||
XP_U16 numFaces, numFaceBytes;
|
||||
XP_U16 numFaces, numFaceBytes = 0;
|
||||
XP_U16 i;
|
||||
XP_U16 flags;
|
||||
void* mappedBase = (void*)ptr;
|
||||
|
|
Loading…
Reference in a new issue