Explorar el Código

Fixed slideshow delay corruption after GIF animation

master
Bert Münnich hace 11 años
padre
commit
cd34aa2a6b
Se han modificado 2 ficheros con 3 adiciones y 2 borrados
  1. +1
    -1
      Makefile
  2. +2
    -1
      main.c

+ 1
- 1
Makefile Ver fichero

@@ -1,4 +1,4 @@
VERSION = git-20140104
VERSION = git-20140108

PREFIX = /usr/local
MANPREFIX = $(PREFIX)/share/man


+ 2
- 1
main.c Ver fichero

@@ -400,7 +400,8 @@ void redraw(void)
img_render(&img);
if (img.ss.on) {
t = img.ss.delay * 1000;
t = img.multi.animate ? MAX(t, img.multi.length) : t;
if (img.multi.cnt > 0 && img.multi.animate)
t = MAX(t, img.multi.length);
set_timeout(slideshow, t, false);
}
} else {


Cargando…
Cancelar
Guardar