SERVER: Remove leftover idndef PSP

This commit is contained in:
Tyler Young 2023-12-04 23:57:11 -05:00
parent d3b088fcf0
commit c5460178de
1 changed files with 3 additions and 3 deletions

View File

@ -253,7 +253,7 @@ float Do_Pathfind(entity from, entity to) {
dist = 0; dist = 0;
best_dist = 100000000; best_dist = 100000000;
#ifndef PSP #ifdef FTE
for (i = 0; i < MAX_WAYPOINTS; i = i + 1) { for (i = 0; i < MAX_WAYPOINTS; i = i + 1) {
// Skip unused waypoint slots // Skip unused waypoint slots
if(waypoints[i].id < 0) { if(waypoints[i].id < 0) {
@ -343,7 +343,7 @@ void LoadWaypointData() {
float i, s; float i, s;
#ifndef PSP #ifdef FTE
for (i = 0; i < MAX_WAYPOINTS; i = i + 1) { for (i = 0; i < MAX_WAYPOINTS; i = i + 1) {
waypoint_ai way; waypoint_ai way;
@ -484,7 +484,7 @@ void LoadWaypointData() {
fclose(file); fclose(file);
#ifndef PSP #ifdef FTE
CalcDistances(); CalcDistances();
#endif #endif
} }