1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-25 22:42:04 +02:00

Fix build

This commit is contained in:
Ivan Savenko
2023-06-19 00:25:21 +03:00
parent d4728f78ce
commit 9b5e81929f
5 changed files with 15 additions and 8 deletions

View File

@@ -47,7 +47,7 @@ int BattleLogMessageProxy::addText(lua_State * L)
{
if(object->lines.empty())
object->lines.emplace_back();
object->lines.back() << text;
object->lines.back().appendRawString(text);
}
}