diff --git a/Source/UnitTests/Core/DSP/DSPAssemblyTest.cpp b/Source/UnitTests/Core/DSP/DSPAssemblyTest.cpp index ecd543d168..fabdc73c3c 100644 --- a/Source/UnitTests/Core/DSP/DSPAssemblyTest.cpp +++ b/Source/UnitTests/Core/DSP/DSPAssemblyTest.cpp @@ -12,7 +12,7 @@ #include -static bool RoundTrippableDissassemble(const std::vector& code, std::string& text) +static bool RoundTrippableDisassemble(const std::vector& code, std::string& text) { DSP::AssemblerSettings settings; settings.ext_separator = '\''; @@ -32,7 +32,7 @@ static bool RoundTrip(const std::vector& code1) { std::vector code2; std::string text; - if (!RoundTrippableDissassemble(code1, text)) + if (!RoundTrippableDisassemble(code1, text)) { printf("RoundTrip: Disassembly failed.\n"); return false; @@ -63,7 +63,7 @@ static bool SuperTrip(const char* asm_code) } printf("First assembly: %i words\n", (int)code1.size()); - if (!RoundTrippableDissassemble(code1, text)) + if (!RoundTrippableDisassemble(code1, text)) { printf("SuperTrip: Disassembly failed\n"); return false;