summaryrefslogtreecommitdiff
path: root/src/core/hle/service/ndm.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2014-06-06 00:35:49 -0400
committerGravatar bunnei2014-06-13 09:51:13 -0400
commitc95972275e276abe3afcac79d956ea29a0879c8e (patch)
treef902b895aa25142f94001674baedfdac9794d548 /src/core/hle/service/ndm.cpp
parentKernel: Updated various kernel function "name" arguments to be const references. (diff)
downloadyuzu-c95972275e276abe3afcac79d956ea29a0879c8e.tar.gz
yuzu-c95972275e276abe3afcac79d956ea29a0879c8e.tar.xz
yuzu-c95972275e276abe3afcac79d956ea29a0879c8e.zip
HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)
Diffstat (limited to 'src/core/hle/service/ndm.cpp')
-rw-r--r--src/core/hle/service/ndm.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/service/ndm.cpp b/src/core/hle/service/ndm.cpp
index 671e9d4bd..48755b6a7 100644
--- a/src/core/hle/service/ndm.cpp
+++ b/src/core/hle/service/ndm.cpp
@@ -13,10 +13,10 @@
13namespace NDM_U { 13namespace NDM_U {
14 14
15const Interface::FunctionInfo FunctionTable[] = { 15const Interface::FunctionInfo FunctionTable[] = {
16 {0x00060040, NULL, "SuspendDaemons"}, 16 {0x00060040, nullptr, "SuspendDaemons"},
17 {0x00080040, NULL, "DisableWifiUsage"}, 17 {0x00080040, nullptr, "DisableWifiUsage"},
18 {0x00090000, NULL, "EnableWifiUsage"}, 18 {0x00090000, nullptr, "EnableWifiUsage"},
19 {0x00140040, NULL, "OverrideDefaultDaemons"}, 19 {0x00140040, nullptr, "OverrideDefaultDaemons"},
20}; 20};
21 21
22//////////////////////////////////////////////////////////////////////////////////////////////////// 22////////////////////////////////////////////////////////////////////////////////////////////////////