mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 03:55:32 +00:00
Compilation fix
This commit is contained in:
parent
07cb56e1ea
commit
1e28611435
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ namespace ppu_func_detail
|
|||
{
|
||||
static __forceinline T get_arg(PPUThread& CPU)
|
||||
{
|
||||
return bind_arg<T, type_pack, type_pack >> 8, type_pack >> 16, type_pack >> 24>::get_arg(CPU);
|
||||
return bind_arg<T, type_pack, (type_pack >> 8), (type_pack >> 16), (type_pack >> 24)>::get_arg(CPU);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue