diff options
-rw-r--r-- | src/idotimeline.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/idotimeline.c b/src/idotimeline.c index ba838ba..8eea4b5 100644 --- a/src/idotimeline.c +++ b/src/idotimeline.c @@ -409,8 +409,8 @@ ido_timeline_start (IdoTimeline *timeline) else priv->timer = g_timer_new (); - /* sanity check */ - g_assert (priv->fps > 0); + /* sanity check; CID: 12651 */ + priv->fps = priv->fps > 0 ? priv->fps : DEFAULT_FPS; if (priv->screen) { |