SmallString: fmt -> format, format -> sprintf

This commit is contained in:
Stenzek
2023-12-13 21:06:15 +10:00
parent ad6e49998f
commit 79c226efff
30 changed files with 224 additions and 224 deletions

View File

@ -66,7 +66,7 @@ void CubebAudioStream::LogCallback(const char* fmt, ...)
LargeString str;
std::va_list ap;
va_start(ap, fmt);
str.format_va(fmt, ap);
str.vsprintf(fmt, ap);
va_end(ap);
Log_DevPrint(str);
}