diff options
-rw-r--r-- | apps/plugins/pictureflow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/pictureflow.c b/apps/plugins/pictureflow.c index 739e97c130..d06f99dfd8 100644 --- a/apps/plugins/pictureflow.c +++ b/apps/plugins/pictureflow.c @@ -1123,7 +1123,7 @@ void render_slide(struct slide_data *slide, const int alpha) } int x; - for (x = fmax(xi, 0); x <= w; x++) { + for (x = fmax(xi, 0); x < w; x++) { PFreal hity = 0; PFreal fk = rays[x]; if (sdy) { |