summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Hexagon122018-04-10 20:28:15 +0300
committerGravatar GitHub2018-04-10 20:28:15 +0300
commit177bdb94df763e4f509989bc09ceb3ecf2aeb8c4 (patch)
treea047f9a78bae539e1e1f0888b23e7aec394c8c32 /src
parentUpdated nvdrv with more service names. (diff)
downloadyuzu-177bdb94df763e4f509989bc09ceb3ecf2aeb8c4.tar.gz
yuzu-177bdb94df763e4f509989bc09ceb3ecf2aeb8c4.tar.xz
yuzu-177bdb94df763e4f509989bc09ceb3ecf2aeb8c4.zip
Updated nvmemp with new service names.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/nvdrv/nvmemp.cpp8
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
14NVMEMP::NVMEMP() : ServiceFramework("nvmemp") { 14NVMEMP::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
22void NVMEMP::Unknown0(Kernel::HLERequestContext& ctx) { 22void NVMEMP::Cmd0(Kernel::HLERequestContext& ctx) {
23 UNIMPLEMENTED(); 23 UNIMPLEMENTED();
24} 24}
25 25
26void NVMEMP::Unknown1(Kernel::HLERequestContext& ctx) { 26void NVMEMP::Cmd1(Kernel::HLERequestContext& ctx) {
27 UNIMPLEMENTED(); 27 UNIMPLEMENTED();
28} 28}
29 29