stop parsing when loading a file

This commit is contained in:
dborth 2009-07-08 20:25:59 +00:00
parent d5e43d1048
commit 93f2826d21

View File

@ -506,6 +506,9 @@ LoadSzFile(char * filepath, unsigned char * rbuffer)
// since we're loading a file // since we're loading a file
HaltDeviceThread(); HaltDeviceThread();
// halt parsing
parseHalt = true;
file = fopen (filepath, "rb"); file = fopen (filepath, "rb");
if (file > 0) if (file > 0)
{ {
@ -552,6 +555,9 @@ LoadFile (char * rbuffer, char *filepath, u32 length, int method, bool silent)
// since we're loading a file // since we're loading a file
HaltDeviceThread(); HaltDeviceThread();
// halt parsing
parseHalt = true;
// open the file // open the file
while(!size && retry == 1) while(!size && retry == 1)
{ {