Home
last modified time | relevance | path

Searched refs:foundMapReference (Results 1 – 1 of 1) sorted by relevance

/dports/games/barony/Barony-3.3.7/src/
H A Dactgeneral.cpp649 size_t foundMapReference = tagValue.find(","); in textSourceProcessScriptTag() local
651 if ( foundMapReference != std::string::npos ) in textSourceProcessScriptTag()
655 std::string variableName = tagValue.substr(0, foundMapReference); in textSourceProcessScriptTag()
656 …int value = std::stoi(tagValue.substr(foundMapReference + 1, tagValue.length() - foundMapReference in textSourceProcessScriptTag()
669 std::string x_str = tagValue.substr(0, foundMapReference); in textSourceProcessScriptTag()
670 … std::string y_str = tagValue.substr(foundMapReference + 1, tagValue.length() - foundMapReference); in textSourceProcessScriptTag()