diff --git a/Quake/cl_main.c b/Quake/cl_main.c index 40aa30136..368d17405 100644 --- a/Quake/cl_main.c +++ b/Quake/cl_main.c @@ -829,7 +829,7 @@ void CL_Viewpos_f (void) #if 0 //camera position q_snprintf (buf, sizeof (buf), - "Viewpos: (%i %i %i) %i %i %i", + "(%i %i %i) %i %i %i", (int)r_refdef.vieworg[0], (int)r_refdef.vieworg[1], (int)r_refdef.vieworg[2], @@ -839,7 +839,7 @@ void CL_Viewpos_f (void) #else //player position q_snprintf (buf, sizeof (buf), - "Viewpos: (%i %i %i) %i %i %i", + "(%i %i %i) %i %i %i", (int)cl_entities[cl.viewentity].origin[0], (int)cl_entities[cl.viewentity].origin[1], (int)cl_entities[cl.viewentity].origin[2], @@ -848,7 +848,7 @@ void CL_Viewpos_f (void) (int)cl.viewangles[ROLL] ); #endif - Con_Printf ("%s\n", buf); + Con_Printf ("Viewpos: %s\n", buf); if (Cmd_Argc () >= 2 && !q_strcasecmp (Cmd_Argv (1), "copy")) if (SDL_SetClipboardText (buf) < 0)