Skip to content

Commit

Permalink
addendum to fix #179 (Windows)
Browse files Browse the repository at this point in the history
  • Loading branch information
kovzol committed Jul 1, 2020
1 parent fe9dfe1 commit 56aca37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui-hlp/render.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ int uih_renderanimation(struct uih_context *gc1, const char *basename,
sprintf(t, "%s%06i.png", basename, framenum);
#ifdef _WIN32
// No symlinks on windows, so just save another copy
writepng(t, uih->image);
writepng(t, uih->image, NULL);
#else
// On Unix, save a symlink.
printmsg(TR("Message", "Linking frame %i to %i..."), framenum,
Expand Down

0 comments on commit 56aca37

Please sign in to comment.