From 1e28611435f78ae7e5a694f2b5da8471a614f58a Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Tue, 24 Feb 2015 14:06:24 +0300 Subject: [PATCH] Compilation fix --- rpcs3/Emu/SysCalls/SC_FUNC.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/SysCalls/SC_FUNC.h b/rpcs3/Emu/SysCalls/SC_FUNC.h index 562a174017..aa69811266 100644 --- a/rpcs3/Emu/SysCalls/SC_FUNC.h +++ b/rpcs3/Emu/SysCalls/SC_FUNC.h @@ -111,7 +111,7 @@ namespace ppu_func_detail { static __forceinline T get_arg(PPUThread& CPU) { - return bind_arg> 8, type_pack >> 16, type_pack >> 24>::get_arg(CPU); + return bind_arg> 8), (type_pack >> 16), (type_pack >> 24)>::get_arg(CPU); } };