pcsx2: debugger: use standard sprintf function

ssprintf is nice but it doesn't worth it
This commit is contained in:
Gregory Hainaut 2015-03-23 23:08:55 +01:00
parent 3b5367c5b7
commit b2efa85a3f
1 changed files with 3 additions and 3 deletions

View File

@ -650,9 +650,9 @@ void P_COP2_Unknown( std::string& output )
void label_decode( std::string& output, u32 addr ) void label_decode( std::string& output, u32 addr )
{ {
std::string buf; char buffer[32];
ssprintf(buf, "->$0x%08X", addr); sprintf(buffer, "->$0x%08X", addr);
output += buf; output += std::string(buffer);
} }
void jump_decode( std::string& output ) void jump_decode( std::string& output )