diff options
author | Andrey Nazarov <skuller@skuller.net> | 2009-05-23 13:09:36 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2009-05-23 13:09:36 +0000 |
commit | 454fc2e2eb975e359696850f07c071aa0736aac7 (patch) | |
tree | caccd779d07d3e30dc3a7cac85ea8969d670519b /source/q_shared.c | |
parent | d7423ceb1f3f699ce36bbd405f240d45f3dda4d4 (diff) |
Fixed scrolling in MVD clients menu.
Implemented automatic chasecam hack for MVD observers.
Correctly handle ICMP errors resluting in sendto() failing on Linux.
Added ‘--disable-icmp’ option to configure script.
Implemented ‘net_stats’ console command.
Diffstat (limited to 'source/q_shared.c')
-rw-r--r-- | source/q_shared.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/source/q_shared.c b/source/q_shared.c index 67772ef..13e9da9 100644 --- a/source/q_shared.c +++ b/source/q_shared.c @@ -24,15 +24,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. vec3_t vec3_origin = { 0, 0, 0 }; #if USE_CLIENT -const color_t colorBlack = { 0, 0, 0, 255 }; -const color_t colorRed = { 255, 0, 0, 255 }; -const color_t colorGreen = { 0, 255, 0, 255 }; -const color_t colorYellow = { 255, 255, 0, 255 }; -const color_t colorBlue = { 0, 0, 255, 255 }; -const color_t colorCyan = { 0, 255, 255, 255 }; -const color_t colorMagenta = { 255, 0, 255, 255 }; -const color_t colorWhite = { 255, 255, 255, 255 }; - const color_t colorTable[8] = { { 0, 0, 0, 255 }, { 255, 0, 0, 255 }, |