diff options
| author | Michael Maltese <mchtly@gmail.com> | 2017-05-24 15:20:31 -0700 |
|---|---|---|
| committer | Michael Maltese <mchtly@gmail.com> | 2017-06-30 01:47:02 -0700 |
| commit | 1d0185d7d56e6f96d0cfa89096d8caeecb26d841 (patch) | |
| tree | b03d6a19d71829d28e226970e1adc34cfbf42a26 /Source/UnitTests/Core/DSP/DSPAssemblyTest.cpp | |
| parent | 2564823522965e2a2dcfad757f6833f6740e6f7e (diff) | |
DSPDisassembler: remove unused base_addr parameter
Diffstat (limited to 'Source/UnitTests/Core/DSP/DSPAssemblyTest.cpp')
| -rw-r--r-- | Source/UnitTests/Core/DSP/DSPAssemblyTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/UnitTests/Core/DSP/DSPAssemblyTest.cpp b/Source/UnitTests/Core/DSP/DSPAssemblyTest.cpp index b1b0ba68d8..4dd3395a46 100644 --- a/Source/UnitTests/Core/DSP/DSPAssemblyTest.cpp +++ b/Source/UnitTests/Core/DSP/DSPAssemblyTest.cpp @@ -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. |
