diff options
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/common.h b/src/common.h index 906d52c..de1c78c 100644 --- a/src/common.h +++ b/src/common.h @@ -475,12 +475,6 @@ typedef enum { COLOR_NONE } color_index_t; -typedef enum { - KILL_RESTART, - KILL_DISCONNECT, - KILL_DROP -} killtype_t; - typedef struct { const char *name; void (* const func)( void ); @@ -512,7 +506,7 @@ void Com_AbortFrame( void ); char *Com_GetLastError( void ); void Com_SetLastError( const char *msg ); -void Com_Quit( const char *reason, killtype_t type ) q_noreturn; +void Com_Quit( const char *reason, error_type_t type ) q_noreturn; void Com_SetColor( color_index_t color ); |