mirror of
https://git.citron-emu.org/citron/emulator
synced 2025-12-23 20:33:41 +00: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