mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-06-02 04:36:57 -06:00
Compilation fix
This commit is contained in:
parent
0bb15b2ff7
commit
a4a25dc28d
@ -75,7 +75,7 @@ void execute_psv_func_by_index(ARMv7Context& context, u32 index)
|
|||||||
|
|
||||||
if (func->func)
|
if (func->func)
|
||||||
{
|
{
|
||||||
(*func->func)(context);
|
func->func(context);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
@ -82,7 +82,7 @@ void execute_ps3_func_by_index(PPUThread& CPU, u32 index)
|
|||||||
}
|
}
|
||||||
else if (func->func)
|
else if (func->func)
|
||||||
{
|
{
|
||||||
(*func->func)(CPU);
|
func->func(CPU);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user