plug-ins/sinus/sinus.c: applied Thomas' 1 liner to fix sinus for tilable.

This commit is contained in:
Seth Burgess 1999-02-14 22:42:20 +00:00
parent 3ee24c2f2e
commit 22ffec61bd
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Sun Feb 14 4:28:00 CST 1999 Seth Burgess <sjburges@gimp.org>
* plug-ins/sinus/sinus.c: changed macro definition supplied by
Thomas to allow tilable sinus again.
Sun Feb 14 23:11:30 CET 1999 Marc Lehmann <pcg@goof.com> Sun Feb 14 23:11:30 CET 1999 Marc Lehmann <pcg@goof.com>
* libgimp/gimptile.c (gimp_tile_cache_ntiles): Round up, not down, * libgimp/gimptile.c (gimp_tile_cache_ntiles): Round up, not down,

View File

@ -55,7 +55,7 @@
#define RAND_MAX 2147483647 #define RAND_MAX 2147483647
#endif /* RAND_MAX */ #endif /* RAND_MAX */
#define ROUND_TO_INT(val) ((val) + 0.5) #define ROUND_TO_INT(val) ((int) ((val) + 0.5))
typedef gdouble colRGBA[4]; typedef gdouble colRGBA[4];