diff options
| author | 2018-04-10 20:28:15 +0300 | |
|---|---|---|
| committer | 2018-04-10 20:28:15 +0300 | |
| commit | 177bdb94df763e4f509989bc09ceb3ecf2aeb8c4 (patch) | |
| tree | a047f9a78bae539e1e1f0888b23e7aec394c8c32 /src/core | |
| parent | Updated nvdrv with more service names. (diff) | |
| download | yuzu-177bdb94df763e4f509989bc09ceb3ecf2aeb8c4.tar.gz yuzu-177bdb94df763e4f509989bc09ceb3ecf2aeb8c4.tar.xz yuzu-177bdb94df763e4f509989bc09ceb3ecf2aeb8c4.zip | |
Updated nvmemp with new service names.
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/hle/service/nvdrv/nvmemp.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/service/nvdrv/nvmemp.cpp b/src/core/hle/service/nvdrv/nvmemp.cpp index 5a13732c7..35d6c0c13 100644 --- a/src/core/hle/service/nvdrv/nvmemp.cpp +++ b/src/core/hle/service/nvdrv/nvmemp.cpp | |||
| @@ -13,17 +13,17 @@ namespace Nvidia { | |||
| 13 | 13 | ||
| 14 | NVMEMP::NVMEMP() : ServiceFramework("nvmemp") { | 14 | NVMEMP::NVMEMP() : ServiceFramework("nvmemp") { |
| 15 | static const FunctionInfo functions[] = { | 15 | static const FunctionInfo functions[] = { |
| 16 | {0, &NVMEMP::Unknown0, "Unknown0"}, | 16 | {0, &NVMEMP::Cmd0, "Cmd0"}, |
| 17 | {1, &NVMEMP::Unknown1, "Unknown1"}, | 17 | {1, &NVMEMP::Cmd1, "Cmd1"}, |
| 18 | }; | 18 | }; |
| 19 | RegisterHandlers(functions); | 19 | RegisterHandlers(functions); |
| 20 | } | 20 | } |
| 21 | 21 | ||
| 22 | void NVMEMP::Unknown0(Kernel::HLERequestContext& ctx) { | 22 | void NVMEMP::Cmd0(Kernel::HLERequestContext& ctx) { |
| 23 | UNIMPLEMENTED(); | 23 | UNIMPLEMENTED(); |
| 24 | } | 24 | } |
| 25 | 25 | ||
| 26 | void NVMEMP::Unknown1(Kernel::HLERequestContext& ctx) { | 26 | void NVMEMP::Cmd1(Kernel::HLERequestContext& ctx) { |
| 27 | UNIMPLEMENTED(); | 27 | UNIMPLEMENTED(); |
| 28 | } | 28 | } |
| 29 | 29 | ||