r117 - trunk/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sun Jun 15 19:40:00 EDT 2008


Author: vermeulen
Date: 2008-06-15 19:40:00 -0400 (Sun, 15 Jun 2008)
New Revision: 117

Modified:
   trunk/client/a_constants.qc
   trunk/client/cl_constants.qc
   trunk/client/cl_extensions.qc
   trunk/client/cl_main.qc
   trunk/client/cl_sbar.qc
   trunk/client/cl_vars.qc
   trunk/client/progs.src
Log:
Not sure what changed, but it wasn't much

Modified: trunk/client/a_constants.qc
===================================================================
--- trunk/client/a_constants.qc	2008-06-15 23:38:40 UTC (rev 116)
+++ trunk/client/a_constants.qc	2008-06-15 23:40:00 UTC (rev 117)
@@ -1,23 +1,3 @@
-/*
-Copyright (C) 1996-1997 Id Software, Inc.
-
-This program is free software; you can redistribute it and/or
-modify it under the terms of the GNU General Public License
-as published by the Free Software Foundation; either version 2
-of the License, or (at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
-
-See the GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
-
-*/
-
 // These are constants which are common between client and server quakec.
 // Things like items and flags which are sent from client to server.
 

Modified: trunk/client/cl_constants.qc
===================================================================
--- trunk/client/cl_constants.qc	2008-06-15 23:38:40 UTC (rev 116)
+++ trunk/client/cl_constants.qc	2008-06-15 23:40:00 UTC (rev 117)
@@ -1,23 +1,3 @@
-/*
-Copyright (C) 1996-1997 Id Software, Inc.
-
-This program is free software; you can redistribute it and/or
-modify it under the terms of the GNU General Public License
-as published by the Free Software Foundation; either version 2
-of the License, or (at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
-
-See the GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
-
-*/
-
 // add-entity mask bits
 const float MASK_ENGINE				= 1;
 const float MASK_ENGINEVIEWMODELS	= 2;

Modified: trunk/client/cl_extensions.qc
===================================================================
--- trunk/client/cl_extensions.qc	2008-06-15 23:38:40 UTC (rev 116)
+++ trunk/client/cl_extensions.qc	2008-06-15 23:40:00 UTC (rev 117)
@@ -1,23 +1,5 @@
-/*
-Copyright (C) 1996-1997 Id Software, Inc.
 
-This program is free software; you can redistribute it and/or
-modify it under the terms of the GNU General Public License
-as published by the Free Software Foundation; either version 2
-of the License, or (at your option) any later version.
 
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-
-See the GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
-
-*/
-
 // CheckExtension
 float(string s) checkextension = #99;
 

Modified: trunk/client/cl_main.qc
===================================================================
--- trunk/client/cl_main.qc	2008-06-15 23:38:40 UTC (rev 116)
+++ trunk/client/cl_main.qc	2008-06-15 23:40:00 UTC (rev 117)
@@ -1,23 +1,4 @@
-/*
-Copyright (C) 1996-1997 Id Software, Inc.
 
-This program is free software; you can redistribute it and/or
-modify it under the terms of the GNU General Public License
-as published by the Free Software Foundation; either version 2
-of the License, or (at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
-
-See the GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
-
-*/
-
 float nxt_cmd;
 
 void() UpdateVariables =
@@ -92,6 +73,7 @@
 	R_RenderScene();
 	
 	Sbar_Draw();
+	Map_Draw();
 };
 
 float(float event, float parama) CSQC_InputEvent =

Modified: trunk/client/cl_sbar.qc
===================================================================
--- trunk/client/cl_sbar.qc	2008-06-15 23:38:40 UTC (rev 116)
+++ trunk/client/cl_sbar.qc	2008-06-15 23:40:00 UTC (rev 117)
@@ -1,23 +1,3 @@
-/*
-Copyright (C) 1996-1997 Id Software, Inc.
-
-This program is free software; you can redistribute it and/or
-modify it under the terms of the GNU General Public License
-as published by the Free Software Foundation; either version 2
-of the License, or (at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
-
-See the GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
-
-*/
-
 float SBAR_HEIGHT = 24;
 
 float cl_items;

Modified: trunk/client/cl_vars.qc
===================================================================
--- trunk/client/cl_vars.qc	2008-06-15 23:38:40 UTC (rev 116)
+++ trunk/client/cl_vars.qc	2008-06-15 23:40:00 UTC (rev 117)
@@ -1,23 +1,4 @@
-/*
-Copyright (C) 1996-1997 Id Software, Inc.
 
-This program is free software; you can redistribute it and/or
-modify it under the terms of the GNU General Public License
-as published by the Free Software Foundation; either version 2
-of the License, or (at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
-
-See the GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
-
-*/
-
 float vid_width, vid_height;
 
 // sbar

Modified: trunk/client/progs.src
===================================================================
--- trunk/client/progs.src	2008-06-15 23:38:40 UTC (rev 116)
+++ trunk/client/progs.src	2008-06-15 23:40:00 UTC (rev 117)
@@ -7,4 +7,5 @@
 
 cl_vars.qc
 cl_sbar.qc
+cl_map.qc
 cl_main.qc




More information about the zymotic-commits mailing list