summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/OpcodeDecoding.h
diff options
context:
space:
mode:
authorPokechu22 <Pokechu022@gmail.com>2022-01-22 22:02:20 -0800
committerPokechu22 <Pokechu022@gmail.com>2022-01-22 22:04:15 -0800
commit8d7eff2a8a5ffc204565e554dc0a71206f7032a4 (patch)
treed289138fbfa228a28d94766d41734184ccef5096 /Source/Core/VideoCommon/OpcodeDecoding.h
parent79b2185117bb2ecba4d069d9eb1ff6f2280905d0 (diff)
VideoCommon: Move logging/seen check for unknown opcodes into CommandProcessor
That way, they're in the same place the panic alerts are generated.
Diffstat (limited to 'Source/Core/VideoCommon/OpcodeDecoding.h')
-rw-r--r--Source/Core/VideoCommon/OpcodeDecoding.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/OpcodeDecoding.h b/Source/Core/VideoCommon/OpcodeDecoding.h
index 7c90997256..1badf63196 100644
--- a/Source/Core/VideoCommon/OpcodeDecoding.h
+++ b/Source/Core/VideoCommon/OpcodeDecoding.h
@@ -60,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