mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
tweak that seemed to fix crash, but I don't get why
This commit is contained in:
parent
b9a3883acd
commit
0bc083096d
1 changed files with 3 additions and 2 deletions
|
@ -109,8 +109,9 @@ ce_dictionary_make( CEAppGlobals* globals, XP_UCHAR* dictName )
|
|||
flags = n_ptr_tohs( &ptr );
|
||||
XP_ASSERT( flags == 0x0100 );
|
||||
|
||||
ctxt->super.nFaces = (XP_U8)numFaces = *ptr++;
|
||||
XP_DEBUGF( "read %d faces from dict", numFaces );
|
||||
numFaces = (XP_U16)(*ptr++);
|
||||
ctxt->super.nFaces = (XP_U8)numFaces;
|
||||
XP_DEBUGF( "read %x faces from dict", (short)numFaces );
|
||||
|
||||
if ( flags == 0x0100 ) {
|
||||
XP_U16 i;
|
||||
|
|
Loading…
Reference in a new issue