Merge pull request #585 from lioncash/sprintfs

DolphinWX: Kill off sprintf calls in CheatsWindow.cpp
This commit is contained in:
Pierre Bourdon 2014-07-09 02:36:22 +02:00
commit 29873a7c55
1 changed files with 4 additions and 6 deletions

View File

@ -32,6 +32,7 @@
#include "Common/Common.h"
#include "Common/IniFile.h"
#include "Common/StringUtil.h"
#include "Core/ActionReplay.h"
#include "Core/ConfigManager.h"
#include "Core/Core.h"
@ -332,17 +333,14 @@ void wxCheatsWindow::OnEvent_CheatsList_ItemSelected(wxCommandEvent& WXUNUSED (e
{
ARCode code = GetARCode(i);
m_Label_Codename->SetLabel(_("Name: ") + StrToWxStr(code.name));
char text[CHAR_MAX];
char* numcodes = text;
sprintf(numcodes, "Number of Codes: %lu", (unsigned long)code.ops.size());
std::string numcodes = StringFromFormat("Number of Codes: %lu", (unsigned long)code.ops.size());
m_Label_NumCodes->SetLabel(StrToWxStr(numcodes));
m_ListBox_CodesList->Clear();
for (const AREntry& entry : code.ops)
{
char text2[CHAR_MAX];
char* ops = text2;
sprintf(ops, "%08x %08x", entry.cmd_addr, entry.value);
std::string ops = StringFromFormat("%08x %08x", entry.cmd_addr, entry.value);
m_ListBox_CodesList->Append(StrToWxStr(ops));
}
}