Skip to content
Snippets Groups Projects
Commit 5672f5a5 authored by dos's avatar dos Committed by pippin
Browse files

video_gif: Don't speed GIFs up 10 times

parent b1813d8c
No related branches found
No related tags found
1 merge request!558Various media improvements
......@@ -173,7 +173,7 @@ static void gif_draw(st3m_media *media, Ctx *ctx) {
static void gif_think(st3m_media *media, float ms_elapsed) {
gif_state *gif = (gif_state *)media;
if (st3m_media_is_playing()) gif->delay -= ms_elapsed * 10;
if (st3m_media_is_playing()) gif->delay -= ms_elapsed;
if (gif->control.seek == 0) {
gif_init(gif);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment