mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-18 22:18:03 -05:00
changed some naming/misc cleanups
This commit is contained in:
@ -15,10 +15,10 @@ Result SVC_ConnectToPort(void* out, const char* port_name) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
const HLEFunction SysCallTable[] = {
|
||||
const HLE::FunctionDef SysCall_Table[] = {
|
||||
{0x2D, WrapI_VC<SVC_ConnectToPort>, "svcConnectToPort"},
|
||||
};
|
||||
|
||||
void Register_SysCall() {
|
||||
HLE::RegisterModule("SysCallTable", ARRAY_SIZE(SysCallTable), SysCallTable);
|
||||
HLE::RegisterModule("SysCallTable", ARRAY_SIZE(SysCall_Table), SysCall_Table);
|
||||
}
|
||||
|
Reference in New Issue
Block a user