Remove redundant initialization

This commit is contained in:
Filip Gawin
2019-03-02 19:42:25 +01:00
parent 8e1fb126d7
commit c110ffcdaa
17 changed files with 25 additions and 25 deletions

View File

@ -116,13 +116,13 @@ static int startTrace = 0;
static void Trace(UGeckoInstruction& inst)
{
std::string regs = "";
std::string regs;
for (int i = 0; i < 32; i++)
{
regs += StringFromFormat("r%02d: %08x ", i, PowerPC::ppcState.gpr[i]);
}
std::string fregs = "";
std::string fregs;
for (int i = 0; i < 32; i++)
{
const auto& ps = PowerPC::ppcState.ps[i];