From 579ca081815bde41f2bb0f6c45b914e983453d54 Mon Sep 17 00:00:00 2001 From: shweet Date: Wed, 14 Jan 2026 04:03:26 -0500 Subject: [PATCH] fix issue with rendering animations on linux --- src/render.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/render.cpp b/src/render.cpp index 7634c2e..dd4c4b5 100644 --- a/src/render.cpp +++ b/src/render.cpp @@ -119,7 +119,11 @@ namespace anm2ed logger.command(command); +#if _WIN32 Process process(command.c_str(), "wb"); +#else + Process process(command.c_str(), "w"); +#endif if (!process.get()) {