mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-11 09:18:40 +12: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
|
// DBG = Debug
|
||||||
// PM = Product Mode
|
// PM = Product Mode
|
||||||
// AuthID = Authentication ID
|
// AuthID = Authentication ID
|
||||||
void(*const sc_table[1024])(PPUThread&) =
|
const ps3_func_caller sc_table[1024] =
|
||||||
{
|
{
|
||||||
null_func,
|
null_func,
|
||||||
bind_func(sys_process_getpid), //1 (0x001)
|
bind_func(sys_process_getpid), //1 (0x001)
|
||||||
|
@ -933,7 +933,7 @@ void SysCalls::DoSyscall(PPUThread& CPU, u32 code)
|
||||||
|
|
||||||
if(code < 1024)
|
if(code < 1024)
|
||||||
{
|
{
|
||||||
(*sc_table[code])(CPU);
|
sc_table[code](CPU);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue