mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 05:40:01 -06:00
StripSpaces: only strip spaces
StripWhitespace maintains old behavior
This commit is contained in:
@ -30,7 +30,7 @@ static void LogCallback(const char* format, ...)
|
||||
va_start(args, format);
|
||||
const char* filename = va_arg(args, const char*) + s_path_cutoff_point;
|
||||
const int lineno = va_arg(args, int);
|
||||
const std::string adapted_format(StripSpaces(format + strlen("%s:%d:")));
|
||||
const std::string adapted_format(StripWhitespace(format + strlen("%s:%d:")));
|
||||
const std::string message = StringFromFormatV(adapted_format.c_str(), args);
|
||||
va_end(args);
|
||||
|
||||
|
Reference in New Issue
Block a user