mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-27 06:48:33 +00:00
DSPDisassembler: remove unused base_addr parameter
This commit is contained in:
parent
2564823522
commit
1d0185d7d5
5 changed files with 11 additions and 12 deletions
|
@ -23,7 +23,7 @@ static bool RoundTrippableDissassemble(const std::vector<u16>& code, std::string
|
|||
settings.show_pc = false;
|
||||
DSP::DSPDisassembler disasm(settings);
|
||||
|
||||
return disasm.Disassemble(code, 0x0000, text);
|
||||
return disasm.Disassemble(code, text);
|
||||
}
|
||||
|
||||
// This test goes from text ASM to binary to text ASM and once again back to binary.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue