changed some naming/misc cleanups

This commit is contained in:
bunnei 2014-04-10 22:15:07 -04:00
parent 2a7d7ce55d
commit 3bd041f5b0
4 changed files with 22 additions and 23 deletions

View file

@ -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);
}