mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-22 12:35:21 +00:00
Compilation fix (sc)
This commit is contained in:
parent
a4a25dc28d
commit
cd2eb59da6
1 changed files with 2 additions and 2 deletions
|
@ -51,7 +51,7 @@ const int kSyscallTableLength = 1024;
|
|||
// DBG = Debug
|
||||
// PM = Product Mode
|
||||
// AuthID = Authentication ID
|
||||
void(*const sc_table[1024])(PPUThread&) =
|
||||
const ps3_func_caller sc_table[1024] =
|
||||
{
|
||||
null_func,
|
||||
bind_func(sys_process_getpid), //1 (0x001)
|
||||
|
@ -933,7 +933,7 @@ void SysCalls::DoSyscall(PPUThread& CPU, u32 code)
|
|||
|
||||
if(code < 1024)
|
||||
{
|
||||
(*sc_table[code])(CPU);
|
||||
sc_table[code](CPU);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue