mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
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:
parent
090535fcbd
commit
35677cbc54
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue