Subversion Repositories filter_foundry

Compare Revisions

Regard whitespace Rev 543 → Rev 544

/trunk/load_mac.c
97,6 → 97,15
}
}
 
// Try to read the file as FFL file
if (*reason == NULL) {
if (readfile_ffl(sfr,reason)) {
gdata->parmloaded = false;
gdata->obfusc = false;
return true;
}
}
 
// then try "Filters Unlimited" file (FFX)
if (*reason == NULL) {
if (readfile_ffx(sfr,reason)) {
115,6 → 124,14
}
}
 
// Is it a "GIMP UserFilter (GUF)" file? (Only partially compatible with Filter Factory!!!)
if (*reason == NULL) {
if (readfile_guf(sfr,reason)) {
gdata->parmloaded = true;
return true;
}
}
 
// Try Mac plugin resource
if (*reason == NULL) {
if (readmacplugin(sfr,reason)) {