Skip to content

Commit 56aca37

Browse files
committed
addendum to fix #179 (Windows)
1 parent fe9dfe1 commit 56aca37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui-hlp/render.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ int uih_renderanimation(struct uih_context *gc1, const char *basename,
315315
sprintf(t, "%s%06i.png", basename, framenum);
316316
#ifdef _WIN32
317317
// No symlinks on windows, so just save another copy
318-
writepng(t, uih->image);
318+
writepng(t, uih->image, NULL);
319319
#else
320320
// On Unix, save a symlink.
321321
printmsg(TR("Message", "Linking frame %i to %i..."), framenum,

0 commit comments

Comments
 (0)