diff --git a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp index 73159c15bb..9ff81b6924 100644 --- a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp +++ b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp @@ -17,8 +17,8 @@ struct CachedInterpreter::Instruction { - typedef void (*CommonCallback)(UGeckoInstruction); - typedef bool (*ConditionalCallback)(u32 data); + using CommonCallback = void (*)(UGeckoInstruction); + using ConditionalCallback = bool (*)(u32); Instruction() {} Instruction(const CommonCallback c, UGeckoInstruction i)