summaryrefslogtreecommitdiff
path: root/src/mmo/ids.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mmo/ids.cpp')
-rw-r--r--src/mmo/ids.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mmo/ids.cpp b/src/mmo/ids.cpp
index 9c013ba..65c470b 100644
--- a/src/mmo/ids.cpp
+++ b/src/mmo/ids.cpp
@@ -25,7 +25,7 @@
namespace tmwa
{
-bool extract(XString str, Species *w)
+bool impl_extract(XString str, Species *w)
{
// lots of data files use this
if (str == "-1"_s)
@@ -35,7 +35,7 @@ bool extract(XString str, Species *w)
}
return extract(str, &w->_value);
}
-bool extract(XString str, GmLevel *lvl)
+bool impl_extract(XString str, GmLevel *lvl)
{
return extract(str, &lvl->bits);
}