- fixed compilation with Clang.

This commit is contained in:
Christoph Oelckers 2021-05-04 00:11:43 +02:00
parent a303da37a9
commit a7adef360b

View file

@ -713,7 +713,7 @@ CCMD(mapinfo)
if (map->designerTime) Printf("\tDesignerTime = %d\n", map->designerTime);
for (int i = 0; i < MAX_MESSAGES; i++)
{
if (map->messages[i].IsNotEmpty()) Printf("\tMessage = %d, \"%s\"\n", i + 1, map->messages[i]);
if (map->messages[i].IsNotEmpty()) Printf("\tMessage = %d, \"%s\"\n", i + 1, map->messages[i].GetChars());
}
for (auto& flagh : MapFlagHandlers)