summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar archshift2015-05-11 15:22:01 -0700
committerGravatar archshift2015-05-11 15:22:01 -0700
commita08bb13e8baec4f565c15042c662ff5a198c42d8 (patch)
treebd5d8896bcf0cc1a00b99768ec8df01c31551dc7
parentMerge pull request #749 from yuriks/stack-top (diff)
parentNWM_UDS: Fix a typo in the nwm service port name (diff)
downloadyuzu-a08bb13e8baec4f565c15042c662ff5a198c42d8.tar.gz
yuzu-a08bb13e8baec4f565c15042c662ff5a198c42d8.tar.xz
yuzu-a08bb13e8baec4f565c15042c662ff5a198c42d8.zip
Merge pull request #754 from purpasmart96/nwm_typo_fix
NWM_UDS: Fix a typo in the nwm service port name
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nwm_uds.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nwm_uds.h b/src/core/hle/service/nwm_uds.h
index 9043f5aa7..82abdff28 100644
--- a/src/core/hle/service/nwm_uds.h
+++ b/src/core/hle/service/nwm_uds.h
@@ -18,7 +18,7 @@ public:
18 Interface(); 18 Interface();
19 19
20 std::string GetPortName() const override { 20 std::string GetPortName() const override {
21 return "nwm:UDS"; 21 return "nwm::UDS";
22 } 22 }
23}; 23};
24 24