fix bug causing pictureflow to write one column past left side of screen, resulting in a stripe of rightmost slide appearing on the left side of the screen

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19775 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Andrew Mahone 2009-01-16 08:18:14 +00:00
parent 090535fcbd
commit 35677cbc54

View file

@ -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) {