diff options
| author | Leo Lam <leolino.lam@gmail.com> | 2017-07-04 13:43:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-04 13:43:45 +0200 |
| commit | 365892c61c7eb90feb636cbdbf3ecf23895521bf (patch) | |
| tree | 123c7cf1313c930b4cbc09f9126d01df8b6b4b67 /Source/UnitTests/Core/DSP/DSPAssemblyTest.cpp | |
| parent | 5a41bfaf6f8de404dc60e2ce313d675e67342115 (diff) | |
| parent | 7dab92d8b568db8b4fc208614d23ae696029389a (diff) | |
Merge pull request #5667 from ligfx/cleanupdspdisassembler
DSPDisassembler: various code cleanups
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 5d8a7838ce..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(0x0000, 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. |
