diff options
| author | JMC47 <JMC4789@gmail.com> | 2022-01-23 05:38:20 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-23 05:38:20 -0500 |
| commit | 481c8596de2748dc31093570e3061db4d4308eb5 (patch) | |
| tree | d289138fbfa228a28d94766d41734184ccef5096 /Source/Core/VideoCommon/OpcodeDecoding.h | |
| parent | 237947e2f139a033da71e733c5e6e24d61b5142d (diff) | |
| parent | 8d7eff2a8a5ffc204565e554dc0a71206f7032a4 (diff) | |
Merge pull request #10389 from Pokechu22/low-unknown-opcode
OpcodeDecoding: Don't raise panic alerts for unknown opcodes 0x01-0x07
Diffstat (limited to 'Source/Core/VideoCommon/OpcodeDecoding.h')
| -rw-r--r-- | Source/Core/VideoCommon/OpcodeDecoding.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/Core/VideoCommon/OpcodeDecoding.h b/Source/Core/VideoCommon/OpcodeDecoding.h index 58295a5304..1badf63196 100644 --- a/Source/Core/VideoCommon/OpcodeDecoding.h +++ b/Source/Core/VideoCommon/OpcodeDecoding.h @@ -24,7 +24,6 @@ extern bool g_record_fifo_data; enum class Opcode { GX_NOP = 0x00, - GX_UNKNOWN_RESET = 0x01, GX_LOAD_BP_REG = 0x61, GX_LOAD_CP_REG = 0x08, @@ -61,8 +60,6 @@ enum class Primitive : u8 GX_DRAW_POINTS = 0x7 // 0xB8 }; -void Init(); - // Interface for the Run and RunCommand functions below. // The functions themselves are templates so that the compiler generates separate versions for each // callback (with the callback functions inlined), so the callback doesn't actually need to be |
