mirror of
https://github.com/FWGS/xash3d-fwgs.git
synced 2026-08-05 03:24:56 +08:00
Rename _format to FORMAT_CHECK
This commit is contained in:
@@ -89,10 +89,10 @@ typedef struct ui_enginefuncs_s
|
||||
const char* (*pfnCmd_Args)( void );
|
||||
|
||||
// debug messages (in-menu shows only notify)
|
||||
void (*Con_Printf)( const char *fmt, ... ) _format( 1 );
|
||||
void (*Con_DPrintf)( const char *fmt, ... ) _format( 1 );
|
||||
void (*Con_NPrintf)( int pos, const char *fmt, ... ) _format( 2 );
|
||||
void (*Con_NXPrintf)( struct con_nprint_s *info, const char *fmt, ... ) _format( 2 );
|
||||
void (*Con_Printf)( const char *fmt, ... ) FORMAT_CHECK( 1 );
|
||||
void (*Con_DPrintf)( const char *fmt, ... ) FORMAT_CHECK( 1 );
|
||||
void (*Con_NPrintf)( int pos, const char *fmt, ... ) FORMAT_CHECK( 2 );
|
||||
void (*Con_NXPrintf)( struct con_nprint_s *info, const char *fmt, ... ) FORMAT_CHECK( 2 );
|
||||
|
||||
// sound handlers
|
||||
void (*pfnPlayLocalSound)( const char *szSound );
|
||||
@@ -118,7 +118,7 @@ typedef struct ui_enginefuncs_s
|
||||
int (*CL_CreateVisibleEntity)( int type, struct cl_entity_s *ent );
|
||||
|
||||
// misc handlers
|
||||
void (*pfnHostError)( const char *szFmt, ... ) _format( 1 );
|
||||
void (*pfnHostError)( const char *szFmt, ... ) FORMAT_CHECK( 1 );
|
||||
int (*pfnFileExists)( const char *filename, int gamedironly );
|
||||
void (*pfnGetGameDir)( char *szGetGameDir );
|
||||
|
||||
|
||||
Reference in New Issue
Block a user