Codechange: replace stredup + StrMakeValidInPlace with std::string + StrMakeValid

This commit is contained in:
Rubidium
2023-06-08 17:15:32 +02:00
committed by rubidium42
parent e762855201
commit 3f35787458
3 changed files with 6 additions and 9 deletions

View File

@@ -86,6 +86,6 @@ bool GetArgumentInteger(uint32 *value, const char *arg);
void IConsoleGUIInit();
void IConsoleGUIFree();
void IConsoleGUIPrint(TextColour colour_code, char *string);
void IConsoleGUIPrint(TextColour colour_code, const std::string &string);
#endif /* CONSOLE_INTERNAL_H */