From 1bcdf7f18d553569a04c8149f6bbc7f53a0f225d Mon Sep 17 00:00:00 2001 From: wheremyfoodat Date: Mon, 10 Oct 2022 17:52:21 +0300 Subject: [PATCH] [DSP] Fix typo --- src/core/services/dsp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/services/dsp.cpp b/src/core/services/dsp.cpp index 1208b583..751f3dea 100644 --- a/src/core/services/dsp.cpp +++ b/src/core/services/dsp.cpp @@ -16,6 +16,6 @@ void DSPService::reset() {} void DSPService::handleSyncRequest(u32 messagePointer) { const u32 command = mem.read32(messagePointer); switch (command) { - default: Helpers::panic("LCD service requested. Command: %08X\n", command); + default: Helpers::panic("DSP service requested. Command: %08X\n", command); } } \ No newline at end of file