summaryrefslogtreecommitdiff
path: root/src/common/extract.hpp
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2013-08-27 19:05:36 -0700
committerBen Longbons <b.r.longbons@gmail.com>2013-08-27 19:05:36 -0700
commit61dc59e612df9c6d2b3a3f4f27f1cb88b6fca98b (patch)
tree875a8e14d67011434cbd4ceb5bf435971d94e0d4 /src/common/extract.hpp
parente8880ef4d8c00de91f72e7aa2d75b05abdecdafb (diff)
downloadtmwa-61dc59e612df9c6d2b3a3f4f27f1cb88b6fca98b.tar.gz
tmwa-61dc59e612df9c6d2b3a3f4f27f1cb88b6fca98b.tar.bz2
tmwa-61dc59e612df9c6d2b3a3f4f27f1cb88b6fca98b.tar.xz
tmwa-61dc59e612df9c6d2b3a3f4f27f1cb88b6fca98b.zip
Handle far extensions in the mapname extractor
This has no effect with the current content, but will make things much more convenient once we start using longer mapnames.
Diffstat (limited to 'src/common/extract.hpp')
-rw-r--r--src/common/extract.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/extract.hpp b/src/common/extract.hpp
index 3c24693..c7bdbcb 100644
--- a/src/common/extract.hpp
+++ b/src/common/extract.hpp
@@ -198,6 +198,8 @@ bool extract(XString str, struct item *it);
inline
bool extract(XString str, MapName *m)
{
+ XString::iterator it = std::find(str.begin(), str.end(), '.');
+ str = str.xislice_h(it);
VString<15> tmp;
bool rv = extract(str, &tmp);
*m = tmp;