From 614a656b83c5f242724a4ab58321de02276cb7d5 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 6 Jul 2015 06:47:10 -0400 Subject: [PATCH] DSPInterpreter: Remove an unused typedef DSPTables already has an equivalent of this, which it uses. --- Source/Core/Core/DSP/DSPInterpreter.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/Source/Core/Core/DSP/DSPInterpreter.h b/Source/Core/Core/DSP/DSPInterpreter.h index d6316fc77e..a584dc43c2 100644 --- a/Source/Core/Core/DSP/DSPInterpreter.h +++ b/Source/Core/Core/DSP/DSPInterpreter.h @@ -25,9 +25,6 @@ int RunCyclesDebug(int cycles); void WriteCR(u16 val); u16 ReadCR(); - -typedef void (*DSPInterpreterFunc)(const UDSPInstruction opc); - // All the opcode functions. void call(const UDSPInstruction opc); void callr(const UDSPInstruction opc);