summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrobojumper <robojumper@gmail.com>2024-11-14 10:29:44 +0100
committerrobojumper <robojumper@gmail.com>2024-11-14 10:29:44 +0100
commitb32d1e2ba159e216ca286c6d3ecc09bedab10c65 (patch)
tree7908ecc022be55dac81031350c60b447adefff51 /src
parent3a180399d04ba39f006122a60bb5f1a1ae100e74 (diff)
More splits
Diffstat (limited to 'src')
-rw-r--r--src/d/a/npc/d_a_npc.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/d/a/npc/d_a_npc.cpp b/src/d/a/npc/d_a_npc.cpp
index 03b506ac..aea7745b 100644
--- a/src/d/a/npc/d_a_npc.cpp
+++ b/src/d/a/npc/d_a_npc.cpp
@@ -1,6 +1,7 @@
#include "d/a/npc/d_a_npc.h"
#include "s/s_StateID.hpp"
+#include "sized_string.h"
fLiMgBa_c NPC_ACTOR_LIST;
@@ -20,7 +21,11 @@ extern nw4r::ut::Color sColors[] = {
nw4r::ut::Color(0x50, 0x46, 0x32, 0),
nw4r::ut::Color(0xD8, 0xC5, 0x8D, 0),
nw4r::ut::Color(0x96, 0x69, 0x3C, 0),
- nw4r::ut::Color(0, 0, 0, 0),
};
+SizedString<128> sNpcStr1;
+SizedString<128> sNpcStr2;
+SizedString<128> sNpcStr3;
+SizedString<128> sNpcStr4;
+
dAcNpc_c::dAcNpc_c() : mStateMgr(*this, sStateID::null), mActorListEntry(this) {}