diff options
author | Viktor Szépe <viktor@szepe.net> | 2024-01-08 20:31:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-08 20:31:48 +0100 |
commit | f12446167491b3e691f6a93a01cad3bd9e54d105 (patch) | |
tree | 8992865b548e08317504d653880c3ee4aacb6ad4 /src/core/hle/service/pcv/pcv.cpp | |
parent | Merge pull request #12608 from szepeviktor/typos (diff) | |
download | yuzu-f12446167491b3e691f6a93a01cad3bd9e54d105.tar yuzu-f12446167491b3e691f6a93a01cad3bd9e54d105.tar.gz yuzu-f12446167491b3e691f6a93a01cad3bd9e54d105.tar.bz2 yuzu-f12446167491b3e691f6a93a01cad3bd9e54d105.tar.lz yuzu-f12446167491b3e691f6a93a01cad3bd9e54d105.tar.xz yuzu-f12446167491b3e691f6a93a01cad3bd9e54d105.tar.zst yuzu-f12446167491b3e691f6a93a01cad3bd9e54d105.zip |
Diffstat (limited to 'src/core/hle/service/pcv/pcv.cpp')
-rw-r--r-- | src/core/hle/service/pcv/pcv.cpp | 10 |
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: class IClkrstSession final : public ServiceFramework<IClkrstSession> { public: - explicit IClkrstSession(Core::System& system_, DeviceCode deivce_code_) - : ServiceFramework{system_, "IClkrstSession"}, deivce_code(deivce_code_) { + explicit IClkrstSession(Core::System& system_, DeviceCode device_code_) + : ServiceFramework{system_, "IClkrstSession"}, device_code(device_code_) { // clang-format off static const FunctionInfo functions[] = { {0, nullptr, "SetClockEnabled"}, @@ -93,7 +93,7 @@ private: rb.Push<u32>(clock_rate); } - DeviceCode deivce_code; + DeviceCode device_code; u32 clock_rate{}; }; @@ -118,9 +118,9 @@ private: void OpenSession(HLERequestContext& ctx) { IPC::RequestParser rp{ctx}; const auto device_code = static_cast<DeviceCode>(rp.Pop<u32>()); - const auto unkonwn_input = rp.Pop<u32>(); + const auto unknown_input = rp.Pop<u32>(); - LOG_DEBUG(Service_PCV, "called, device_code={}, input={}", device_code, unkonwn_input); + LOG_DEBUG(Service_PCV, "called, device_code={}, input={}", device_code, unknown_input); IPC::ResponseBuilder rb{ctx, 2, 0, 1}; rb.Push(ResultSuccess); |