diff options
| author | Hexagon12 <Hexagon12@users.noreply.github.com> | 2018-04-10 20:28:15 +0300 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-10 20:28:15 +0300 | 
| commit | 177bdb94df763e4f509989bc09ceb3ecf2aeb8c4 (patch) | |
| tree | a047f9a78bae539e1e1f0888b23e7aec394c8c32 | |
| parent | 4d1a2509dfb1c45406010df1cdf36675d3d7fec7 (diff) | |
Updated nvmemp with new service names.
| -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 {  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();  } | 
