ref: cc1df04fabc69ad1f0665cef42249a06978bbce6
parent: 9398314af60cc03063f3182eff05d00d4e9a6a78
author: Clownacy <Clownacy@users.noreply.github.com>
date: Mon May 13 12:28:02 EDT 2019
Fix broken code in MyChar.cpp
--- a/src/MyChar.cpp
+++ b/src/MyChar.cpp
@@ -941,7 +941,8 @@
}
else
{
- for (int i = 0; i < NPC_MAX; i++)
+ int i;
+ for (i = 0; i < NPC_MAX; i++)
if (gNPC[i].code_event == dir)
break;