From: havoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Date: Thu, 4 Dec 2003 10:05:12 +0000 (+0000)
Subject: removed need for gfx/menuplyr.lmp (this code wasn't even used anymore, since the... 
X-Git-Tag: xonotic-v0.1.0preview~6243
X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=3ff18334a572ae2c544598e05194675207c613df;p=xonotic%2Fdarkplaces.git

removed need for gfx/menuplyr.lmp (this code wasn't even used anymore, since the menu loads it directly on demand and that is optional)


git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@3687 d7cf8633-e32d-0410-b094-e92efae38249
---

diff --git a/cl_screen.c b/cl_screen.c
index 0a58d682..e38bb736 100644
--- a/cl_screen.c
+++ b/cl_screen.c
@@ -29,8 +29,6 @@ int			clearnotify;
 
 qboolean	scr_drawloading = false;
 
-static qbyte menuplyr_pixels[4096];
-
 void DrawCrosshair(int num);
 static void SCR_ScreenShot_f (void);
 static void R_Envmap_f (void);
@@ -455,8 +453,6 @@ void SCR_SizeDown_f (void)
 
 void CL_Screen_Init(void)
 {
-	qpic_t *dat;
-
 	Cvar_RegisterVariable (&scr_fov);
 	Cvar_RegisterVariable (&scr_viewsize);
 	Cvar_RegisterVariable (&scr_conspeed);
@@ -478,19 +474,6 @@ void CL_Screen_Init(void)
 	Cmd_AddCommand ("envmap", R_Envmap_f);
 
 	scr_initialized = true;
-
-	// HACK HACK HACK
-	// load the image data for the player image in the config menu
-	dat = (qpic_t *)FS_LoadFile ("gfx/menuplyr.lmp", false);
-	if (!dat)
-		Sys_Error("unable to load gfx/menuplyr.lmp");
-	SwapPic (dat);
-
-	if (dat->width*dat->height <= 4096)
-		memcpy (menuplyr_pixels, dat->data, dat->width * dat->height);
-	else
-		Con_Printf("gfx/menuplyr.lmp larger than 4k buffer");
-	Mem_Free(dat);
 }
 
 void DrawQ_Clear(void)