More conversion

This commit is contained in:
iikorni
2026-08-29 19:17:46 -05:00
parent 0404d430dc
commit 70e5c02355
72 changed files with 13308 additions and 14309 deletions
+7 -7
View File
@@ -211,7 +211,7 @@ typedef struct
#include "sys.hpp"
#include "zone.hpp"
#include "mathlib.hpp"
#include "cvar.hpp"
#include "convar.hpp"
#include "protocol.hpp"
#include "net.hpp"
@@ -275,11 +275,11 @@ extern qboolean noclip_anglehack;
//
extern quakeparms_t *host_parms;
extern cvar_t sys_ticrate;
extern cvar_t sys_throttle;
extern cvar_t sys_nostdout;
extern cvar_t developer;
extern cvar_t max_edicts; //johnfitz
extern convar sys_ticrate;
extern convar sys_throttle;
extern convar sys_nostdout;
extern convar developer;
extern convar max_edicts; //johnfitz
extern qboolean host_initialized; // true if into command execution
extern double host_frametime;
@@ -303,7 +303,7 @@ void Host_ServerFrame (void);
void Host_InitCommands (void);
void Host_Init (void);
void Host_Shutdown(void);
void Host_Callback_Notify (cvar_t *var); /* callback function for CVAR_NOTIFY */
void Host_Callback_Notify (convar *var); /* callback function for CVAR_NOTIFY */
FUNC_NORETURN void Host_Error (const char *error, ...) FUNC_PRINTF(1,2);
FUNC_NORETURN void Host_EndGame (const char *message, ...) FUNC_PRINTF(1,2);
#ifdef __WATCOMC__