Subversion Repositories filter_foundry

Compare Revisions

Regard whitespace Rev 365 → Rev 366

/trunk/load_win.c
82,7 → 82,7
HMODULE hm;
 
// First, try to read the file as AFS/PFF/TXT file
if( (readok = readfile(sfr,reason)) ){
if( (readok = readfile_afs_pff(sfr,reason)) ){
gdata->obfusc = false;
gdata->parmloaded = false;
}
108,6 → 108,13
}
}
 
// Is it a "Filters Unlimited" filter? (Only partially compatible with Filter Factory!!!)
if (!readok) {
if (readfile_ffx(sfr, reason)) {
readok = gdata->parmloaded = true;
}
}
 
// If nothing worked, we will try to find a PARM resource (MacOS plugin, or NE executable on Win64)
if (!readok) {
if (read8bfplugin(sfr, reason)) {