diff --git a/engine/client/image.c b/engine/client/image.c index a0ce582de..eabde7f2e 100644 --- a/engine/client/image.c +++ b/engine/client/image.c @@ -1056,7 +1056,7 @@ void screenshotJPEG(char *filename, qbyte *screendata, int screenwidth, int scre if (!(outfile = FS_OpenVFS(filename, "wb", FS_GAMEONLY))) { FS_CreatePath (filename, FS_GAME); - if (!(outfile = FS_OpenVFS(filename, "w", FS_GAMEONLY))) + if (!(outfile = FS_OpenVFS(filename, "wb", FS_GAMEONLY))) Sys_Error ("Error opening %s", filename); }