mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
Update logs.cpp
Fix std::string reuse
This commit is contained in:
parent
c31cb216d2
commit
63d0917e34
1 changed files with 1 additions and 1 deletions
|
@ -412,7 +412,7 @@ void logs::message::broadcast(const char* fmt, const fmt_type_info* sup, ...) co
|
|||
for (auto v = sup; v && v->fmt_string; v++)
|
||||
args_count++;
|
||||
|
||||
text.reserve(50000);
|
||||
text.clear();
|
||||
args.resize(args_count);
|
||||
|
||||
va_list c_args;
|
||||
|
|
Loading…
Add table
Reference in a new issue