aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/nvdrv/nvmemp.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-04-13 00:25:32 -0400
committerGitHub <noreply@github.com>2018-04-13 00:25:32 -0400
commitb7369f99ec3f794bcc626b83f78efa5728087750 (patch)
tree44141ddb2b3d6093b14886df22d84ff120e941e5 /src/core/hle/service/nvdrv/nvmemp.cpp
parent9629736625fddcd1bc6d2557e0fe80ff6e685eba (diff)
parentcc89b7bfcbe3448c8ca3e224b8d3fa628214748e (diff)
Merge pull request #319 from Hexagon12/service-name-fix
Various service name fixes - part 1
Diffstat (limited to 'src/core/hle/service/nvdrv/nvmemp.cpp')
-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 {
NVMEMP::NVMEMP() : ServiceFramework("nvmemp") {
static const FunctionInfo functions[] = {
- {0, &NVMEMP::Unknown0, "Unknown0"},
- {1, &NVMEMP::Unknown1, "Unknown1"},
+ {0, &NVMEMP::Cmd0, "Cmd0"},
+ {1, &NVMEMP::Cmd1, "Cmd1"},
};
RegisterHandlers(functions);
}
-void NVMEMP::Unknown0(Kernel::HLERequestContext& ctx) {
+void NVMEMP::Cmd0(Kernel::HLERequestContext& ctx) {
UNIMPLEMENTED();
}
-void NVMEMP::Unknown1(Kernel::HLERequestContext& ctx) {
+void NVMEMP::Cmd1(Kernel::HLERequestContext& ctx) {
UNIMPLEMENTED();
}