I'm being paranoid. Cursor should definatly work. Hopefully this'll stop the big nasty deaththreats coming from up2 :(

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1965 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2006-02-13 00:18:37 +00:00
parent 8684c02705
commit 851b73afe3
1 changed files with 4 additions and 1 deletions

View File

@ -32,7 +32,10 @@ void LoadPics(void)
//main bar (add cvars later)
con_chars = Draw_LoadImage("conchars", false);
Cvar_GetString("cl_cursor", buffer, sizeof(buffer));
pic_cursor = Draw_LoadImage(buffer, false);
if (*buffer)
pic_cursor = Draw_LoadImage(buffer, false);
else
pic_cursor = NULL;
}
void DrawChar(unsigned int c, int x, int y)