diff --git a/common/cmd.c b/common/cmd.c index 84b72b6..a2b1bfe 100644 --- a/common/cmd.c +++ b/common/cmd.c @@ -478,24 +478,6 @@ void Cmd_UnAlias_f (void) Con_Printf ("Unknown alias \"%s\"\n", s); } -/* -=============== -Cmd_Grab_f - -Grabs mouse so we don't have to mess with cvars. Kinda requires -nodga for the -moment. -=============== -*/ -void Cmd_Grab_f (void) -{ - Cbuf_AddText("set in_grab 1"); -} - -void Cmd_UnGrab_f (void) -{ - Cbuf_AddText("set in_grab 0"); -} - /* ============================================================================= @@ -878,8 +860,6 @@ void Cmd_Init (void) Cmd_AddCommand ("echo",Cmd_Echo_f); Cmd_AddCommand ("alias",Cmd_Alias_f); Cmd_AddCommand ("unalias",Cmd_UnAlias_f); - Cmd_AddCommand ("grab",Cmd_Grab_f); - Cmd_AddCommand ("ungrab",Cmd_UnGrab_f); Cmd_AddCommand ("wait", Cmd_Wait_f); Cmd_AddCommand ("cmdlist", Cmd_CmdList_f); #ifndef SERVERONLY