forked from tTh/FloatImg
nasty bug fixed in fimgfx
This commit is contained in:
parent
865c226051
commit
5a66118f8b
|
@ -48,7 +48,7 @@ for (n=0, fx=fx_list; fx->name; fx++, n++) {
|
|||
fprintf(stderr, "-> %3d %s\n", n, fx->name);
|
||||
#endif
|
||||
if (!strcmp(fx->name, txt)) {
|
||||
return n;
|
||||
return fx->id;
|
||||
}
|
||||
}
|
||||
return -1; /* NOT FOUND */
|
||||
|
@ -83,9 +83,9 @@ static void help(int lvl)
|
|||
{
|
||||
Fx *fx;
|
||||
|
||||
puts("------ fimg special effects ------");
|
||||
printf("-- fimg special effects %s %s --", __DATE__, __TIME__);
|
||||
puts("usage:");
|
||||
puts("\tfimgfix [options] <effect> source.fimg resultat.fimg");
|
||||
puts("\tfimgfx [options] <effect> source.fimg resultat.fimg");
|
||||
|
||||
puts("options:");
|
||||
puts("\t-k N.N\tset the floating value");
|
||||
|
@ -97,6 +97,7 @@ for (fx=fx_list; fx->name; fx++) {
|
|||
printf("%s ", fx->name);
|
||||
}
|
||||
puts("");
|
||||
fimg_print_version(1);
|
||||
exit(0);
|
||||
}
|
||||
/* --------------------------------------------------------------------- */
|
||||
|
@ -148,7 +149,8 @@ switch (act) {
|
|||
return -3;
|
||||
|
||||
default:
|
||||
fprintf(stderr, "*** %s : %d is bad action\n", __func__, act);
|
||||
fprintf(stderr, "%s %s : %d is bad action\n",
|
||||
__FILE__, __func__, act);
|
||||
break;
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue