mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-02-02 12:41:40 +00:00
remove the win32 windows tomfoolery. if someone complains, we'll cross that
bridge when we get to it (unless we burn it first:)
This commit is contained in:
parent
04d66b0952
commit
5c1fa73e55
1 changed files with 0 additions and 24 deletions
|
@ -923,9 +923,6 @@ CL_ConnectionlessPacket (void)
|
||||||
Con_Printf ("Command packet from remote host. Ignored.\n");
|
Con_Printf ("Command packet from remote host. Ignored.\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
#ifdef _WIN32
|
|
||||||
VID_RaiseWindow ();
|
|
||||||
#endif
|
|
||||||
s = MSG_ReadString ();
|
s = MSG_ReadString ();
|
||||||
|
|
||||||
strncpy (cmdtext, s, sizeof (cmdtext) - 1);
|
strncpy (cmdtext, s, sizeof (cmdtext) - 1);
|
||||||
|
@ -1146,20 +1143,6 @@ CL_Download_f (void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef _WIN32
|
|
||||||
#include <windows.h>
|
|
||||||
/*
|
|
||||||
=================
|
|
||||||
CL_Minimize_f
|
|
||||||
=================
|
|
||||||
*/
|
|
||||||
void
|
|
||||||
CL_Windows_f (void)
|
|
||||||
{
|
|
||||||
VID_MinimiseWindow ();
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
=================
|
=================
|
||||||
CL_Init
|
CL_Init
|
||||||
|
@ -1241,13 +1224,6 @@ CL_Init (void)
|
||||||
Cmd_AddCommand ("say", NULL, "No Description");
|
Cmd_AddCommand ("say", NULL, "No Description");
|
||||||
Cmd_AddCommand ("say_team", NULL, "No Description");
|
Cmd_AddCommand ("say_team", NULL, "No Description");
|
||||||
Cmd_AddCommand ("serverinfo", NULL, "No Description");
|
Cmd_AddCommand ("serverinfo", NULL, "No Description");
|
||||||
|
|
||||||
//
|
|
||||||
// Windows commands
|
|
||||||
//
|
|
||||||
#ifdef _WIN32
|
|
||||||
Cmd_AddCommand ("windows", CL_Windows_f, "No Description");
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue