mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-28 14:42:26 +00:00
Fix function definition for Waypoints and silence unneeded developer print
This commit is contained in:
parent
91d516960d
commit
4e13b00c33
2 changed files with 11 additions and 14 deletions
|
@ -2291,9 +2291,7 @@ unsigned short openset_waypoints[MAX_WAYPOINTS]; // List of waypoints currently
|
|||
unsigned short openset_length; // Current length of the open set
|
||||
zombie_ai zombie_list[MaxZombies];
|
||||
|
||||
//Debug//
|
||||
void printSortedOpenSet()
|
||||
{
|
||||
|
||||
//
|
||||
// Debugs prints the current sorted list of waypoints in the open set
|
||||
//
|
||||
|
@ -2304,7 +2302,6 @@ void printSortedOpenSet()
|
|||
}
|
||||
Con_Printf("\n");
|
||||
}
|
||||
}
|
||||
//------//
|
||||
|
||||
//
|
||||
|
|
|
@ -533,7 +533,7 @@ void R_SetupAliasFrame (aliashdr_t *paliashdr, int frame, lerpdata_t *lerpdata)
|
|||
|
||||
if ((frame >= paliashdr->numframes) || (frame < 0))
|
||||
{
|
||||
Con_DPrintf ("R_AliasSetupFrame: no such frame %d for '%s'\n", frame, e->model->name);
|
||||
//Con_DPrintf ("R_AliasSetupFrame: no such frame %d for '%s'\n", frame, e->model->name);
|
||||
frame = 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue