forked from teamnwah/openmw-tes3coop
GCC compile fix
This commit is contained in:
parent
5b08baf5bf
commit
9d4f79bcfc
2 changed files with 2 additions and 2 deletions
|
@ -472,7 +472,7 @@ namespace MWDialogue
|
|||
|
||||
void DialogueManager::parseText(std::string text)
|
||||
{
|
||||
std::map<std::string,std::list<ESM::DialInfo>>::iterator it;
|
||||
std::map<std::string,std::list <ESM::DialInfo> >::iterator it;
|
||||
for(it = actorKnownTopics.begin();it != actorKnownTopics.end();it++)
|
||||
{
|
||||
MWGui::DialogueWindow* win = mEnvironment.mWindowManager->getDialogueWindow();
|
||||
|
|
|
@ -31,7 +31,7 @@ namespace MWDialogue
|
|||
void parseText(std::string text);
|
||||
|
||||
std::map<std::string,bool> knownTopics;// Those are the topics the player knows.
|
||||
std::map<std::string,std::list<ESM::DialInfo>> actorKnownTopics;
|
||||
std::map<std::string,std::list <ESM::DialInfo> > actorKnownTopics;
|
||||
|
||||
MWScript::CompilerContext mCompilerContext;
|
||||
std::ostream mErrorStream;
|
||||
|
|
Loading…
Reference in a new issue