mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-15 15:41:24 +01:00
get rid of excessive logging
This commit is contained in:
parent
e01f8db17e
commit
b25f20587a
1 changed files with 0 additions and 4 deletions
|
@ -139,12 +139,10 @@ ce_dictionary_make( CEAppGlobals* globals, XP_UCHAR* dictName )
|
||||||
(XP_U8*)XP_MALLOC(globals->mpool, numFaces*2);
|
(XP_U8*)XP_MALLOC(globals->mpool, numFaces*2);
|
||||||
|
|
||||||
ptr += 2; /* skip xloc header */
|
ptr += 2; /* skip xloc header */
|
||||||
XP_DEBUGF( "pre values: ptr now 0x%p", ptr );
|
|
||||||
for ( i = 0; i < numFaces*2; i += 2 ) {
|
for ( i = 0; i < numFaces*2; i += 2 ) {
|
||||||
ctxt->super.countsAndValues[i] = *ptr++;
|
ctxt->super.countsAndValues[i] = *ptr++;
|
||||||
ctxt->super.countsAndValues[i+1] = *ptr++;
|
ctxt->super.countsAndValues[i+1] = *ptr++;
|
||||||
}
|
}
|
||||||
XP_DEBUGF( "post values: ptr now 0x%p", ptr );
|
|
||||||
|
|
||||||
ceLoadSpecialData( ctxt, &ptr );
|
ceLoadSpecialData( ctxt, &ptr );
|
||||||
|
|
||||||
|
@ -209,8 +207,6 @@ ceLoadSpecialData( CEDictionaryCtxt* ctxt, XP_U8** ptrp )
|
||||||
XP_UCHAR** texts;
|
XP_UCHAR** texts;
|
||||||
SpecialBitmaps* bitmaps;
|
SpecialBitmaps* bitmaps;
|
||||||
|
|
||||||
XP_DEBUGF( "loadSpecialData: there are %d specials", nSpecials );
|
|
||||||
|
|
||||||
texts = (XP_UCHAR**)XP_MALLOC( ctxt->super.mpool,
|
texts = (XP_UCHAR**)XP_MALLOC( ctxt->super.mpool,
|
||||||
nSpecials * sizeof(*texts) );
|
nSpecials * sizeof(*texts) );
|
||||||
bitmaps = (SpecialBitmaps*)
|
bitmaps = (SpecialBitmaps*)
|
||||||
|
|
Loading…
Reference in a new issue