Merge pull request #6969 from lioncash/namespace

Common: Namespace GekkoDisassembler.cpp/.h
This commit is contained in:
Léo Lam
2018-05-26 11:18:10 +02:00
committed by GitHub
10 changed files with 20 additions and 12 deletions

View File

@ -163,7 +163,7 @@ void JITWidget::Update()
for (u32 i = 0; i < code_block.m_num_instructions; i++)
{
const PPCAnalyst::CodeOp& op = code_buffer[i];
std::string opcode = GekkoDisassembler::Disassemble(op.inst.hex, op.address);
const std::string opcode = Common::GekkoDisassembler::Disassemble(op.inst.hex, op.address);
ppc_disasm << std::setfill('0') << std::setw(8) << std::hex << op.address;
ppc_disasm << " " << opcode << std::endl;
}