]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - fs.h
added Print versions of Printf functions and made all calls that do not need formatin...
[xonotic/darkplaces.git] / fs.h
diff --git a/fs.h b/fs.h
index 97ef0301a248a14d6e4ba9a20a38ea8d18a664a2..da3b6a006b8f42f837e63f6c30a8170dcfe04ba6 100644 (file)
--- a/fs.h
+++ b/fs.h
@@ -49,7 +49,8 @@ int FS_Close (qfile_t* file);
 size_t FS_Write (qfile_t* file, const void* data, size_t datasize);
 size_t FS_Read (qfile_t* file, void* buffer, size_t buffersize);
 int FS_Flush (qfile_t* file);
-int FS_Printf (qfile_t* file, const char* format, ...);
+int FS_Print(qfile_t* file, const char *msg);
+int FS_Printf(qfile_t* file, const char* format, ...);
 int FS_Getc (qfile_t* file);
 int FS_Seek (qfile_t* file, long offset, int whence);
 long FS_Tell (qfile_t* file);