Subversion Repositories spk

Rev

Rev 36 | Rev 39 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 36 Rev 37
Line 239... Line 239...
239
		printf ( "Error: Mod File, %s, does not exist\n", catfile.c_str() );
239
		printf ( "Error: Mod File, %s, does not exist\n", catfile.c_str() );
240
		return;
240
		return;
241
	}
241
	}
242
 
242
 
243
	CVirtualFileSystem *pVfs = new CVirtualFileSystem();
243
	CVirtualFileSystem *pVfs = new CVirtualFileSystem();
244
	if ( !pVfs->LoadMod(catfile.ToString()) ) {
244
	if ( !pVfs->loadMod(catfile.ToString()) ) {
245
		printf("Error: Unable to read mod file, %s\n", catfile.c_str());
245
		printf("Error: Unable to read mod file, %s\n", catfile.c_str());
246
		delete pVfs;
246
		delete pVfs;
247
		return;
247
		return;
248
	}
248
	}
249
 
249