From d68b8297764d4c800c4da896ae106fc15ad496fe Mon Sep 17 00:00:00 2001 From: qndel Date: Wed, 11 Nov 2020 02:15:23 +0100 Subject: [PATCH] codefix message (#2155) --- Source/sync.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/sync.cpp b/Source/sync.cpp index eec751629..09ee4ac2f 100644 --- a/Source/sync.cpp +++ b/Source/sync.cpp @@ -206,7 +206,7 @@ static void sync_monster(int pnum, const TSyncMonster *p) return; } - for (i = 0; i < nummonsters; i++) { + for (i = 0; i < nummonsters; i++) { // CODEFIX: this loop does nothing if (monstactive[i] == ndx) { break; }