summaryrefslogtreecommitdiff
path: root/src/map/script.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/script.cpp')
-rw-r--r--src/map/script.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/map/script.cpp b/src/map/script.cpp
index 5e96a9f..f7eecca 100644
--- a/src/map/script.cpp
+++ b/src/map/script.cpp
@@ -66,7 +66,7 @@ Map<ScriptLabel, int> scriptlabel_db;
UPMap<FString, const ScriptBuffer> userfunc_db;
static
-const char *pos[11] =
+const char *pos_str[11] =
{
"Head",
"Body",
@@ -2227,13 +2227,13 @@ void builtin_getequipname(ScriptState *st)
{
item = sd->inventory_data[i];
if (item)
- buf = STRPRINTF("%s-[%s]", pos[num - 1], item->jname);
+ buf = STRPRINTF("%s-[%s]", pos_str[num - 1], item->jname);
else
- buf = STRPRINTF("%s-[%s]", pos[num - 1], pos[10]);
+ buf = STRPRINTF("%s-[%s]", pos_str[num - 1], pos_str[10]);
}
else
{
- buf = STRPRINTF("%s-[%s]", pos[num - 1], pos[10]);
+ buf = STRPRINTF("%s-[%s]", pos_str[num - 1], pos_str[10]);
}
push_str(st->stack, ByteCode::STR, dumb_string::copys(buf));