diff options
Diffstat (limited to 'src/renderer/tr_public.h')
-rw-r--r-- | src/renderer/tr_public.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/renderer/tr_public.h b/src/renderer/tr_public.h index 1a7d93c2..b1ccfbc1 100644 --- a/src/renderer/tr_public.h +++ b/src/renderer/tr_public.h @@ -108,10 +108,10 @@ typedef struct { // typedef struct { // print message on the local console - void (QDECL *Printf)( int printLevel, const char *fmt, ...); + void (QDECL *Printf)( int printLevel, const char *fmt, ...) __attribute__ ((format (printf, 2, 3))); // abort the game - void (QDECL *Error)( int errorLevel, const char *fmt, ...); + void (QDECL *Error)( int errorLevel, const char *fmt, ...) __attribute__ ((format (printf, 2, 3))); // milliseconds should only be used for profiling, never // for anything game related. Get time from the refdef |