[DSP] Fix typo

This commit is contained in:
wheremyfoodat 2022-10-10 17:52:21 +03:00
parent 4c8ddd2f10
commit 1bcdf7f18d

View file

@ -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);
}
}