fix issue with rendering animations on linux

This commit is contained in:
2026-01-14 04:03:26 -05:00
parent 8a1058d559
commit 579ca08181

View File

@@ -119,7 +119,11 @@ namespace anm2ed
logger.command(command); logger.command(command);
#if _WIN32
Process process(command.c_str(), "wb"); Process process(command.c_str(), "wb");
#else
Process process(command.c_str(), "w");
#endif
if (!process.get()) if (!process.get())
{ {