From ce34eea2dc1822d0fe4e6b0e1cff5d23f64bd1bf Mon Sep 17 00:00:00 2001 From: Clownacy <Clownacy@users.noreply.github.com> Date: Sun, 27 Jan 2019 11:32:48 +0000 Subject: [PATCH] Change how gpNpcFuncTable is done The '&'s are pointless --- src/NpcTbl.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/NpcTbl.cpp b/src/NpcTbl.cpp index 16d111cd..320ca33a 100644 --- a/src/NpcTbl.cpp +++ b/src/NpcTbl.cpp @@ -56,13 +56,13 @@ void ReleaseNpcTable() //Npc function table NPCFUNCTION gpNpcFuncTbl[] = { - &ActNpc000, - &ActNpc001, - &ActNpc002, - &ActNpc003, - &ActNpc004, - &ActNpc005, - &ActNpc006, + ActNpc000, + ActNpc001, + ActNpc002, + ActNpc003, + ActNpc004, + ActNpc005, + ActNpc006, nullptr, nullptr, nullptr, @@ -72,8 +72,8 @@ NPCFUNCTION gpNpcFuncTbl[] = nullptr, nullptr, nullptr, - &ActNpc016, - &ActNpc017, + ActNpc016, + ActNpc017, nullptr, nullptr, nullptr,