From dd66dac5c166e2e4fb9195a914f10cdd2f9eb3c4 Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Mon, 13 Jun 2022 17:05:24 -0700 Subject: [PATCH] UnitTests: Fix typo in DSPAssemblyTest --- Source/UnitTests/Core/DSP/DSPAssemblyTest.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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;