diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-10-16 06:46:22 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-10-16 06:46:22 +0200 |
commit | f706b3bd24261e808d6598db819ffc21c8c36e27 (patch) | |
tree | b41dfae683aae02767202996a1d25978dc8d574d /src/core/hle | |
parent | Merge pull request #9058 from Docteh/new_transifex_cli (diff) | |
download | yuzu-f706b3bd24261e808d6598db819ffc21c8c36e27.tar yuzu-f706b3bd24261e808d6598db819ffc21c8c36e27.tar.gz yuzu-f706b3bd24261e808d6598db819ffc21c8c36e27.tar.bz2 yuzu-f706b3bd24261e808d6598db819ffc21c8c36e27.tar.lz yuzu-f706b3bd24261e808d6598db819ffc21c8c36e27.tar.xz yuzu-f706b3bd24261e808d6598db819ffc21c8c36e27.tar.zst yuzu-f706b3bd24261e808d6598db819ffc21c8c36e27.zip |
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/service/hid/hid.cpp | 2 | ||||
-rw-r--r-- | src/core/hle/service/hid/irsensor/pointing_processor.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp index 46bad7871..79375bd2f 100644 --- a/src/core/hle/service/hid/hid.cpp +++ b/src/core/hle/service/hid/hid.cpp @@ -2118,7 +2118,7 @@ void Hid::WritePalmaWaveEntry(Kernel::HLERequestContext& ctx) { ASSERT_MSG(t_mem->GetSize() == 0x3000, "t_mem has incorrect size"); LOG_WARNING(Service_HID, - "(STUBBED) called, connection_handle={}, wave_set={}, unkown={}, " + "(STUBBED) called, connection_handle={}, wave_set={}, unknown={}, " "t_mem_handle=0x{:08X}, t_mem_size={}, size={}", connection_handle.npad_id, wave_set, unknown, t_mem_handle, t_mem_size, size); diff --git a/src/core/hle/service/hid/irsensor/pointing_processor.h b/src/core/hle/service/hid/irsensor/pointing_processor.h index cf4930794..d63423aff 100644 --- a/src/core/hle/service/hid/irsensor/pointing_processor.h +++ b/src/core/hle/service/hid/irsensor/pointing_processor.h @@ -37,10 +37,10 @@ private: u8 pointing_status; INSERT_PADDING_BYTES(3); u32 unknown; - float unkown_float1; + float unknown_float1; float position_x; float position_y; - float unkown_float2; + float unknown_float2; Core::IrSensor::IrsRect window_of_interest; }; static_assert(sizeof(PointingProcessorMarkerData) == 0x20, |