summaryrefslogtreecommitdiff
path: root/src/core/hle/service/pcv
diff options
context:
space:
mode:
authorGravatar Viktor Szépe2024-01-08 20:31:48 +0100
committerGravatar GitHub2024-01-08 13:31:48 -0600
commitf12446167491b3e691f6a93a01cad3bd9e54d105 (patch)
tree8992865b548e08317504d653880c3ee4aacb6ad4 /src/core/hle/service/pcv
parentMerge pull request #12608 from szepeviktor/typos (diff)
downloadyuzu-f12446167491b3e691f6a93a01cad3bd9e54d105.tar.gz
yuzu-f12446167491b3e691f6a93a01cad3bd9e54d105.tar.xz
yuzu-f12446167491b3e691f6a93a01cad3bd9e54d105.zip
Fix typos in src/core (#12625)
* Fix typos in src/core * Fix typo correction * Fix indentation of MemoryStateNames * Fix indent
Diffstat (limited to 'src/core/hle/service/pcv')
-rw-r--r--src/core/hle/service/pcv/pcv.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/hle/service/pcv/pcv.cpp b/src/core/hle/service/pcv/pcv.cpp
index c13ffa6f6..3d0f2aeb7 100644
--- a/src/core/hle/service/pcv/pcv.cpp
+++ b/src/core/hle/service/pcv/pcv.cpp
@@ -54,8 +54,8 @@ public:
54 54
55class IClkrstSession final : public ServiceFramework<IClkrstSession> { 55class IClkrstSession final : public ServiceFramework<IClkrstSession> {
56public: 56public:
57 explicit IClkrstSession(Core::System& system_, DeviceCode deivce_code_) 57 explicit IClkrstSession(Core::System& system_, DeviceCode device_code_)
58 : ServiceFramework{system_, "IClkrstSession"}, deivce_code(deivce_code_) { 58 : ServiceFramework{system_, "IClkrstSession"}, device_code(device_code_) {
59 // clang-format off 59 // clang-format off
60 static const FunctionInfo functions[] = { 60 static const FunctionInfo functions[] = {
61 {0, nullptr, "SetClockEnabled"}, 61 {0, nullptr, "SetClockEnabled"},
@@ -93,7 +93,7 @@ private:
93 rb.Push<u32>(clock_rate); 93 rb.Push<u32>(clock_rate);
94 } 94 }
95 95
96 DeviceCode deivce_code; 96 DeviceCode device_code;
97 u32 clock_rate{}; 97 u32 clock_rate{};
98}; 98};
99 99
@@ -118,9 +118,9 @@ private:
118 void OpenSession(HLERequestContext& ctx) { 118 void OpenSession(HLERequestContext& ctx) {
119 IPC::RequestParser rp{ctx}; 119 IPC::RequestParser rp{ctx};
120 const auto device_code = static_cast<DeviceCode>(rp.Pop<u32>()); 120 const auto device_code = static_cast<DeviceCode>(rp.Pop<u32>());
121 const auto unkonwn_input = rp.Pop<u32>(); 121 const auto unknown_input = rp.Pop<u32>();
122 122
123 LOG_DEBUG(Service_PCV, "called, device_code={}, input={}", device_code, unkonwn_input); 123 LOG_DEBUG(Service_PCV, "called, device_code={}, input={}", device_code, unknown_input);
124 124
125 IPC::ResponseBuilder rb{ctx, 2, 0, 1}; 125 IPC::ResponseBuilder rb{ctx, 2, 0, 1};
126 rb.Push(ResultSuccess); 126 rb.Push(ResultSuccess);