X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=cl_demo.c;h=5e77cad13dee5ef97c12a1637f6d6a61e96547a4;hb=4f0f1d15ebb91d53c1d449cf96f6be3791566edc;hp=5be4e8080d8ad24998f38ff50f7db9bc1918de1c;hpb=fb55f65f8f10dfaf093b99b8055d204888af0e85;p=xonotic%2Fdarkplaces.git diff --git a/cl_demo.c b/cl_demo.c index 5be4e808..5e77cad1 100644 --- a/cl_demo.c +++ b/cl_demo.c @@ -136,7 +136,7 @@ void CL_CutDemo (unsigned char **buf, fs_offset_t *filesize) *buf = FS_LoadFile(cls.demoname, tempmempool, false, filesize); // restart the demo recording - cls.demofile = FS_Open(cls.demoname, "wb", false, false); + cls.demofile = FS_OpenRealFile(cls.demoname, "wb", false); if(!cls.demofile) Host_Error("failed to reopen the demo file"); FS_Printf(cls.demofile, "%i\n", cls.forcetrack); @@ -365,7 +365,7 @@ void CL_Record_f (void) // open the demo file Con_Printf("recording to %s.\n", name); - cls.demofile = FS_Open (name, "wb", false, false); + cls.demofile = FS_OpenRealFile(name, "wb", false); if (!cls.demofile) { Con_Print("ERROR: couldn't open.\n"); @@ -414,7 +414,7 @@ void CL_PlayDemo_f (void) cls.protocol = PROTOCOL_QUAKE; Con_Printf("Playing demo %s.\n", name); - cls.demofile = FS_Open (name, "rb", false, false); + cls.demofile = FS_OpenVirtualFile(name, false); if (!cls.demofile) { Con_Print("ERROR: couldn't open.\n");