diff options
| author | 2014-10-04 15:01:36 -0700 | |
|---|---|---|
| committer | 2014-10-04 15:01:36 -0700 | |
| commit | 1d0ac4783270c77d16d8d3a1e40703a2f45f3f82 (patch) | |
| tree | ab21ef38e244f0fa1c297af6cc0cd831c62529d8 | |
| parent | added "StoreDataCache" to the function table (diff) | |
| download | yuzu-1d0ac4783270c77d16d8d3a1e40703a2f45f3f82.tar.gz yuzu-1d0ac4783270c77d16d8d3a1e40703a2f45f3f82.tar.xz yuzu-1d0ac4783270c77d16d8d3a1e40703a2f45f3f82.zip | |
Added some more names to the function table
Added "SetApplicationCpuTimeLimit" and "GetApplicationCpuTimeLimit" to apt.cpp
| -rw-r--r-- | src/core/hle/service/apt.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/apt.cpp b/src/core/hle/service/apt.cpp index e97e7dbf7..d73dadf5a 100644 --- a/src/core/hle/service/apt.cpp +++ b/src/core/hle/service/apt.cpp | |||
| @@ -152,6 +152,8 @@ const Interface::FunctionInfo FunctionTable[] = { | |||
| 152 | {0x004C0000, nullptr, "SetFatalErrDispMode"}, | 152 | {0x004C0000, nullptr, "SetFatalErrDispMode"}, |
| 153 | {0x004D0080, nullptr, "GetAppletProgramInfo"}, | 153 | {0x004D0080, nullptr, "GetAppletProgramInfo"}, |
| 154 | {0x004E0000, nullptr, "HardwareResetAsync"}, | 154 | {0x004E0000, nullptr, "HardwareResetAsync"}, |
| 155 | {0x004F0080, nullptr, "SetApplicationCpuTimeLimit"}, | ||
| 156 | {0x00500040, nullptr, "GetApplicationCpuTimeLimit"}, | ||
| 155 | }; | 157 | }; |
| 156 | 158 | ||
| 157 | //////////////////////////////////////////////////////////////////////////////////////////////////// | 159 | //////////////////////////////////////////////////////////////////////////////////////////////////// |