Skip to content

Commit

Permalink
- fixed compilation with Clang.
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed May 3, 2021
1 parent a303da3 commit a7adef3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/core/g_mapinfo.cpp
Expand Up @@ -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)
Expand Down

0 comments on commit a7adef3

Please sign in to comment.