Subversion Repositories filter_foundry

Compare Revisions

Regard whitespace Rev 536 → Rev 537

/trunk/load_win.c
131,12 → 131,20
 
// Is it a "Filters Unlimited" filter? (Only partially compatible with Filter Factory!!!)
if (reasonstr == NULL) {
if (readfile_picotxt(sfr, &reasonstr)) {
if (readfile_picotxt_or_ffdecomp(sfr, &reasonstr)) {
gdata->parmloaded = true;
return true;
}
}
 
// Is it a "GIMP UserFilter (GUF)" file? (Only partially compatible with Filter Factory!!!)
if (reasonstr == NULL) {
if (readfile_guf(sfr, &reasonstr)) {
gdata->parmloaded = true;
return true;
}
}
 
// If nothing worked, we will try to find a PARM resource (MacOS plugin, or 64 bit 8BF on Win32 OS)
// Note that we cannot detect obfuscated filters here!
if (reasonstr == NULL) {