Fix dialogue not working on Windows

This commit is contained in:
2016-07-08 16:57:38 -04:00
parent 2ed83ef4ac
commit 225b90471a

View File

@@ -1075,7 +1075,7 @@ void refresh_talking() {
}
short scan_for_response(const char *str) {
if(strnicmp(str, " ", 4) == 1) return -1;
if(strnicmp(str, " ", 4) == 0) return -1;
cSpeech talk = univ.town.cur_talk();
for(short i = 0; i < talk.talk_nodes.size(); i++) {
cSpeech::cNode node = talk.talk_nodes[i];