]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
added debug prints to FRIK_FILE fopen/fclose builtins
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 15 Jun 2005 01:55:55 +0000 (01:55 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 15 Jun 2005 01:55:55 +0000 (01:55 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5438 d7cf8633-e32d-0410-b094-e92efae38249

prvm_cmds.c

index c68c3ab818e71263db7fe65cbc70c59dc9a80a1d..c5c9879e0e0714304ae5b0a752ce10f67055d94c 100644 (file)
@@ -1457,6 +1457,8 @@ void VM_fopen(void)
        VM_FILES[filenum] = FS_Open(va("data/%s", filename), modestring, false, false);
        if (VM_FILES[filenum] == NULL && mode == 0)
                VM_FILES[filenum] = FS_Open(va("%s", filename), modestring, false, false);
+       if (developer.integer)
+               Con_Printf("fopen: %s mode %s opened as #%i\n", filename, modestring, filenum);
 
        if (VM_FILES[filenum] == NULL)
                PRVM_G_FLOAT(OFS_RETURN) = -1;
@@ -1489,6 +1491,8 @@ void VM_fclose(void)
                Con_Printf("VM_fclose: no such file handle %i (or file has been closed) in %s\n", filenum, PRVM_NAME);
                return;
        }
+       if (developer.integer)
+               Con_Printf("fclose #%i\n", filenum);
        FS_Close(VM_FILES[filenum]);
        VM_FILES[filenum] = NULL;
 }