summaryrefslogtreecommitdiff
path: root/Source/UnitTests/Core
diff options
context:
space:
mode:
authorPokechu22 <Pokechu022@gmail.com>2022-06-13 17:05:24 -0700
committerPokechu22 <Pokechu022@gmail.com>2022-06-14 12:22:05 -0700
commitdd66dac5c166e2e4fb9195a914f10cdd2f9eb3c4 (patch)
tree9350da82dd9ed1f1dd9ab4ec1a35da9e606cf766 /Source/UnitTests/Core
parent3cb0976367205aff969a6eda1c3b601e40c7f24e (diff)
UnitTests: Fix typo in DSPAssemblyTest
Diffstat (limited to 'Source/UnitTests/Core')
-rw-r--r--Source/UnitTests/Core/DSP/DSPAssemblyTest.cpp6
1 files 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 <gtest/gtest.h>
-static bool RoundTrippableDissassemble(const std::vector<u16>& code, std::string& text)
+static bool RoundTrippableDisassemble(const std::vector<u16>& code, std::string& text)
{
DSP::AssemblerSettings settings;
settings.ext_separator = '\'';
@@ -32,7 +32,7 @@ static bool RoundTrip(const std::vector<u16>& code1)
{
std::vector<u16> 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;