1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-06-21 00:19:29 +02:00

lib/CGeneralTextHandler.cpp: fix misleading indentation

This commit is contained in:
Johannes 'josch' Schauer
2018-04-19 15:12:18 +02:00
parent 95bec98936
commit 8ead3e3b91

View File

@ -250,7 +250,7 @@ std::string CLegacyConfigParser::readRawString()
else
ret = extractNormalString();//string without quotes - copy till \t or \r
curr++;
curr++;
return ret;
}
@ -292,7 +292,7 @@ bool CLegacyConfigParser::endLine()
while (curr < end && *curr != '\n')
readString();
curr++;
curr++;
return curr < end;
}