mirror of https://github.com/PCSX2/pcsx2.git
pcsx2: debugger: use standard sprintf function
ssprintf is nice but it doesn't worth it
This commit is contained in:
parent
3b5367c5b7
commit
b2efa85a3f
|
@ -650,9 +650,9 @@ void P_COP2_Unknown( std::string& output )
|
|||
|
||||
void label_decode( std::string& output, u32 addr )
|
||||
{
|
||||
std::string buf;
|
||||
ssprintf(buf, "->$0x%08X", addr);
|
||||
output += buf;
|
||||
char buffer[32];
|
||||
sprintf(buffer, "->$0x%08X", addr);
|
||||
output += std::string(buffer);
|
||||
}
|
||||
|
||||
void jump_decode( std::string& output )
|
||||
|
|
Loading…
Reference in New Issue