diff --git a/.gitignore b/.gitignore index 9740b71..75b848e 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ .pydevproject *.kate-swp *.kdev4 +*.conf diff --git a/src/animation.c b/src/animation.c index 21cf7fb..8ec6bd5 100644 --- a/src/animation.c +++ b/src/animation.c @@ -567,7 +567,7 @@ double animationGetFps(Animation animation) { return animation->fps; } void animationSetFps(Animation animation, double fps) { animation->fps = !(fps > HELI_MIN_FPS) ? HELI_MIN_FPS - : !(fps > HELI_MAX_FPS) ? HELI_MAX_FPS : fps; + : !(fps < HELI_MAX_FPS) ? HELI_MAX_FPS : fps; } int animationIsPlaying(Animation animation) diff --git a/src/helianthus.conf b/src/helianthus.conf deleted file mode 100644 index 9b61c4e..0000000 --- a/src/helianthus.conf +++ /dev/null @@ -1 +0,0 @@ -PREFIX = '/home/bw/opt/helianthus-release'