summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2026-03-22 14:23:46 +0100
committerJosJuice <josjuice@gmail.com>2026-03-22 14:23:46 +0100
commitf2055fe0b89cb01c92197511d8c5c164af1a9afa (patch)
tree13553b05fbaa43e46b960f3f7804d81ed7130a22 /Source/Core
parent12935d5b2563e0443210737855f958323575afe5 (diff)
Remove "please report it to the developers" from unknown opcode message
I think we've gotten all the useful reports we can get from this now. Nowadays we're just getting repeated reports of issues we already know about, like https://bugs.dolphin-emu.org/issues/12321.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/VideoCommon/CommandProcessor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/CommandProcessor.cpp b/Source/Core/VideoCommon/CommandProcessor.cpp
index 0d91284038..1dbf466f1c 100644
--- a/Source/Core/VideoCommon/CommandProcessor.cpp
+++ b/Source/Core/VideoCommon/CommandProcessor.cpp
@@ -700,8 +700,8 @@ void CommandProcessorManager::HandleUnknownOpcode(u8 cmd_byte, const u8* buffer,
{
advice = _trans(
"This error is usually caused by the emulated GPU desyncing with the emulated CPU, "
- "but your current settings make this unlikely to happen. If this error is stopping the "
- "game from working, please report it to the developers.");
+ "but your current settings make this unlikely to happen. The error may also be caused by "
+ "a game bug.");
}
PanicAlertFmtT("GFX FIFO: Unknown Opcode ({0:#04x} @ {1}, preprocess={2}).\n"