Changeset 501

Show
Ignore:
Timestamp:
08/11/07 18:18:45 (1 year ago)
Author:
takkaria
Message:

Remove some debugging code, and try using the new savefile code when the old one fails.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/load.c

    r500 r501  
    23002300                        if (err) what = "Cannot parse savefile"; 
    23012301                } 
     2302 
     2303                /* Try using the new savefile code instead */ 
     2304                if (err) 
     2305                { 
     2306                        if (load(savefile)) 
     2307                        { 
     2308                                new_save = TRUE; 
     2309                                return TRUE; 
     2310                        } 
     2311                } 
    23022312        } 
    23032313 
  • trunk/src/loadsave.c

    r499 r501  
    160160        safe_setuid_drop(); 
    161161 
    162         printf("hello!\n"); 
    163  
    164162        return TRUE; 
    165163}