Subversion Repositories filter_foundry

Rev

Rev 536 | Rev 544 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 536 Rev 537
Line 129... Line 129...
129
                }
129
                }
130
        }
130
        }
131
 
131
 
132
        // Is it a "Filters Unlimited" filter? (Only partially compatible with Filter Factory!!!)
132
        // Is it a "Filters Unlimited" filter? (Only partially compatible with Filter Factory!!!)
133
        if (reasonstr == NULL) {
133
        if (reasonstr == NULL) {
-
 
134
                if (readfile_picotxt_or_ffdecomp(sfr, &reasonstr)) {
-
 
135
                        gdata->parmloaded = true;
-
 
136
                        return true;
-
 
137
                }
-
 
138
        }
-
 
139
 
-
 
140
        // Is it a "GIMP UserFilter (GUF)" file? (Only partially compatible with Filter Factory!!!)
-
 
141
        if (reasonstr == NULL) {
134
                if (readfile_picotxt(sfr, &reasonstr)) {
142
                if (readfile_guf(sfr, &reasonstr)) {
135
                        gdata->parmloaded = true;
143
                        gdata->parmloaded = true;
136
                        return true;
144
                        return true;
137
                }
145
                }
138
        }
146
        }
139
 
147