summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPEmu2 <85417801+PEmu2@users.noreply.github.com>2022-08-22 19:52:13 -0700
committerGitHub <noreply@github.com>2022-08-22 19:52:13 -0700
commitb516ae12ca76552d9bacb3d268cf486d146c482b (patch)
treeaf0ab7edfec2aab9a0c797a01d0878c736833b07
parent48fdbcde231a0cc1913b8fa940f6d43a514fc918 (diff)
Edit error message
Edit error message to be less sarcastic. I doubt many users appreciate this when Dolphin has just crashed.
-rw-r--r--Source/Core/VideoCommon/CommandProcessor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/CommandProcessor.cpp b/Source/Core/VideoCommon/CommandProcessor.cpp
index 6ebb726d23..f2264ecbe0 100644
--- a/Source/Core/VideoCommon/CommandProcessor.cpp
+++ b/Source/Core/VideoCommon/CommandProcessor.cpp
@@ -662,7 +662,7 @@ void HandleUnknownOpcode(u8 cmd_byte, const u8* buffer, bool preprocess)
"* This really is an unknown opcode (unlikely)\n"
"* Some other sort of bug\n\n"
"Further errors will be sent to the Video Backend log and\n"
- "Dolphin will now likely crash or hang. Enjoy.",
+ "Dolphin will now likely crash or hang.",
cmd_byte, fmt::ptr(buffer), preprocess);
}
}