From 222621f89bbfbdc3ac0089850ef8cb3816a88594 Mon Sep 17 00:00:00 2001 From: Spoike Date: Mon, 2 Jan 2006 22:43:02 +0000 Subject: [PATCH] more specific file modes. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1770 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }