diff options
| author | JMC47 <JMC4789@gmail.com> | 2026-03-25 13:31:55 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-25 13:31:55 -0400 |
| commit | dcbcfed12af49ab864bea9cdd3e8930a191e5d96 (patch) | |
| tree | 9cfdc37c5f28759538b14d01ef52ad596b63573e /Source/Core/VideoCommon | |
| parent | 81192d96cf546a3ade54f5a7c50eab0f0aaa6b07 (diff) | |
| parent | f2055fe0b89cb01c92197511d8c5c164af1a9afa (diff) | |
Merge pull request #14499 from JosJuice/gpu-desync-no-report
Remove "please report it to the developers" from unknown opcode message
Diffstat (limited to 'Source/Core/VideoCommon')
| -rw-r--r-- | Source/Core/VideoCommon/CommandProcessor.cpp | 4 |
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" |
