summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
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