Corrected i_alternate, fixes issue #171

This commit is contained in:
Bert Münnich
2014-08-29 20:16:24 +02:00
parent 0f6cb93a09
commit f478385d59
2 changed files with 6 additions and 4 deletions

8
main.c
View File

@ -314,14 +314,16 @@ end:
void load_image(int new)
{
static int current;
if (new < 0 || new >= filecnt)
return;
win_set_cursor(&win, CURSOR_WATCH);
reset_timeout(slideshow);
if (new != fileidx)
alternate = fileidx;
if (new != current)
alternate = current;
img_close(&img, false);
while (!img_load(&img, &files[new])) {
@ -332,7 +334,7 @@ void load_image(int new)
new--;
}
files[new].loaded = true;
fileidx = new;
fileidx = current = new;
info.open = false;
open_info();