diff options
| author | 2022-10-16 00:46:22 -0400 | |
|---|---|---|
| committer | 2022-10-16 00:46:22 -0400 | |
| commit | f706b3bd24261e808d6598db819ffc21c8c36e27 (patch) | |
| tree | b41dfae683aae02767202996a1d25978dc8d574d /src/core/hle | |
| parent | Merge pull request #9058 from Docteh/new_transifex_cli (diff) | |
| download | yuzu-f706b3bd24261e808d6598db819ffc21c8c36e27.tar.gz yuzu-f706b3bd24261e808d6598db819ffc21c8c36e27.tar.xz yuzu-f706b3bd24261e808d6598db819ffc21c8c36e27.zip | |
general: Fix spelling of "unknown"
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) { | |||
| 2118 | ASSERT_MSG(t_mem->GetSize() == 0x3000, "t_mem has incorrect size"); | 2118 | ASSERT_MSG(t_mem->GetSize() == 0x3000, "t_mem has incorrect size"); |
| 2119 | 2119 | ||
| 2120 | LOG_WARNING(Service_HID, | 2120 | LOG_WARNING(Service_HID, |
| 2121 | "(STUBBED) called, connection_handle={}, wave_set={}, unkown={}, " | 2121 | "(STUBBED) called, connection_handle={}, wave_set={}, unknown={}, " |
| 2122 | "t_mem_handle=0x{:08X}, t_mem_size={}, size={}", | 2122 | "t_mem_handle=0x{:08X}, t_mem_size={}, size={}", |
| 2123 | connection_handle.npad_id, wave_set, unknown, t_mem_handle, t_mem_size, size); | 2123 | connection_handle.npad_id, wave_set, unknown, t_mem_handle, t_mem_size, size); |
| 2124 | 2124 | ||
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: | |||
| 37 | u8 pointing_status; | 37 | u8 pointing_status; |
| 38 | INSERT_PADDING_BYTES(3); | 38 | INSERT_PADDING_BYTES(3); |
| 39 | u32 unknown; | 39 | u32 unknown; |
| 40 | float unkown_float1; | 40 | float unknown_float1; |
| 41 | float position_x; | 41 | float position_x; |
| 42 | float position_y; | 42 | float position_y; |
| 43 | float unkown_float2; | 43 | float unknown_float2; |
| 44 | Core::IrSensor::IrsRect window_of_interest; | 44 | Core::IrSensor::IrsRect window_of_interest; |
| 45 | }; | 45 | }; |
| 46 | static_assert(sizeof(PointingProcessorMarkerData) == 0x20, | 46 | static_assert(sizeof(PointingProcessorMarkerData) == 0x20, |