From b322835767c0392cdf3e136ac1d66a9b0edac83a Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Wed, 3 Apr 2002 18:50:36 +0000 Subject: [PATCH] fix a missing \n --- libs/models/alias/gl_model_alias.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/models/alias/gl_model_alias.c b/libs/models/alias/gl_model_alias.c index 2b3cac25d..631730735 100644 --- a/libs/models/alias/gl_model_alias.c +++ b/libs/models/alias/gl_model_alias.c @@ -157,7 +157,7 @@ Mod_LoadSkin (byte * skin, int skinsize, int snum, int gnum, qboolean group, // save 8 bit texels for the player model to remap if (strequal (loadmodel->name, "progs/player.mdl")) { if (skinsize > sizeof (player_8bit_texels)) - Sys_Error ("Player skin too large"); + Sys_Error ("Player skin too large\n"); memcpy (player_8bit_texels, pskin, skinsize); }