From f5788c331edd929778ea7a596e6ca32a9a04a0bb Mon Sep 17 00:00:00 2001 From: "Richard C. Gobeille" Date: Tue, 21 Apr 2020 14:35:06 -0700 Subject: [PATCH] Clarify clipupdatesector() log message a bit # Conflicts: # source/build/src/clip.cpp --- source/build/src/clip.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/build/src/clip.cpp b/source/build/src/clip.cpp index ebdb3be6f..0e34c3e87 100644 --- a/source/build/src/clip.cpp +++ b/source/build/src/clip.cpp @@ -1011,8 +1011,7 @@ static void clipupdatesector(vec2_t const pos, int16_t * const sectnum, int wall if (nsecs > (walldist + 8)) { - Printf("%s():%d shortest distance between origin point (%d, %d) and sector %d is %d. Sector may be corrupt!\n", - EDUKE32_FUNCTION, __LINE__, pos.x, pos.y, *sectnum, nsecs); + Printf("%s(): initial position (%d, %d) not within initial sector %d; shortest distance %d.\n", EDUKE32_FUNCTION, pos.x, pos.y, *sectnum, nsecs); walldist = 0x7fff; }