Einen Header für cl_scrn.c

This commit is contained in:
Yamagi Burmeister 2010-06-18 16:41:26 +00:00
parent b517aa921a
commit cfb7b19620

View file

@ -16,6 +16,12 @@
* this program; if not, write to the Free Software Foundation, Inc., 59 * this program; if not, write to the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston, MA 02111-1307, USA. * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* *
* =======================================================================
*
* This file implements the 2D stuff. For example the HUD and
* the networkgraph.
*
* =======================================================================
*/ */
#include "header/client.h" #include "header/client.h"
@ -29,7 +35,6 @@ int scr_draw_loading;
vrect_t scr_vrect; /* position of render window on screen */ vrect_t scr_vrect; /* position of render window on screen */
cvar_t *scr_viewsize; cvar_t *scr_viewsize;
cvar_t *scr_conspeed; cvar_t *scr_conspeed;
cvar_t *scr_centertime; cvar_t *scr_centertime;
@ -195,7 +200,6 @@ void SCR_CenterPrint (char *str) {
Con_ClearNotify (); Con_ClearNotify ();
} }
void SCR_DrawCenterString (void) { void SCR_DrawCenterString (void) {
char *start; char *start;
int l; int l;
@ -634,7 +638,6 @@ void SCR_TileClear (void) {
} }
#define STAT_MINUS 10 #define STAT_MINUS 10
char *sb_nums[2][11] = { char *sb_nums[2][11] = {
{ {
@ -1212,3 +1215,4 @@ void SCR_UpdateScreen (void) {
} }
re.EndFrame(); re.EndFrame();
} }