Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Sep 1, 2019
1 parent 8c55e7a commit eb7d8b1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion doomsday/apps/client/src/dd_main.cpp
Expand Up @@ -1135,7 +1135,9 @@ static void initializeWithWindowReady()
for (GameProfile const *prof : playable) ids << prof->gameId();
msg += "The following games are playable: " + String::join(ids, ", ");
}
App_Error("%s", msg.c_str());
EscapeParser esc;
esc.parse(msg);
App_Error("%s", esc.plainText().c_str());
}
#endif
}
Expand Down

0 comments on commit eb7d8b1

Please sign in to comment.