summaryrefslogtreecommitdiff
path: root/src/core/hle/service/usb
diff options
context:
space:
mode:
authorGravatar Morph2021-05-21 01:05:04 -0400
committerGravatar Morph2021-06-02 00:39:27 -0400
commit12c1766997f2596b4b1b1a6a411e4f6d56605ee7 (patch)
treee718a0f18be8aaf664ebdcd197af513e5a118b72 /src/core/hle/service/usb
parentMerge pull request #6395 from lioncash/result-move (diff)
downloadyuzu-12c1766997f2596b4b1b1a6a411e4f6d56605ee7.tar.gz
yuzu-12c1766997f2596b4b1b1a6a411e4f6d56605ee7.tar.xz
yuzu-12c1766997f2596b4b1b1a6a411e4f6d56605ee7.zip
general: Replace RESULT_SUCCESS with ResultSuccess
Transition to PascalCase for result names.
Diffstat (limited to 'src/core/hle/service/usb')
-rw-r--r--src/core/hle/service/usb/usb.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/usb/usb.cpp b/src/core/hle/service/usb/usb.cpp
index b3b230a8c..7f436c3bb 100644
--- a/src/core/hle/service/usb/usb.cpp
+++ b/src/core/hle/service/usb/usb.cpp
@@ -165,7 +165,7 @@ private:
165 LOG_DEBUG(Service_USB, "called"); 165 LOG_DEBUG(Service_USB, "called");
166 166
167 IPC::ResponseBuilder rb{ctx, 2, 0, 1}; 167 IPC::ResponseBuilder rb{ctx, 2, 0, 1};
168 rb.Push(RESULT_SUCCESS); 168 rb.Push(ResultSuccess);
169 rb.PushIpcInterface<IPdSession>(system); 169 rb.PushIpcInterface<IPdSession>(system);
170 } 170 }
171}; 171};
@@ -207,7 +207,7 @@ public:
207private: 207private:
208 void GetPdCradleSession(Kernel::HLERequestContext& ctx) { 208 void GetPdCradleSession(Kernel::HLERequestContext& ctx) {
209 IPC::ResponseBuilder rb{ctx, 2, 0, 1}; 209 IPC::ResponseBuilder rb{ctx, 2, 0, 1};
210 rb.Push(RESULT_SUCCESS); 210 rb.Push(ResultSuccess);
211 rb.PushIpcInterface<IPdCradleSession>(system); 211 rb.PushIpcInterface<IPdCradleSession>(system);
212 212
213 LOG_DEBUG(Service_USB, "called"); 213 LOG_DEBUG(Service_USB, "called");