general: Fix spelling of "unknown"
This commit is contained in:
parent
d574bb4610
commit
f706b3bd24
|
@ -14,7 +14,7 @@ enum class CameraAmbientNoiseLevel : u32 {
|
||||||
Low,
|
Low,
|
||||||
Medium,
|
Medium,
|
||||||
High,
|
High,
|
||||||
Unkown3, // This level can't be reached
|
Unknown3, // This level can't be reached
|
||||||
};
|
};
|
||||||
|
|
||||||
// This is nn::irsensor::CameraLightTarget
|
// This is nn::irsensor::CameraLightTarget
|
||||||
|
@ -75,9 +75,9 @@ enum class IrCameraStatus : u32 {
|
||||||
enum class IrCameraInternalStatus : u32 {
|
enum class IrCameraInternalStatus : u32 {
|
||||||
Stopped,
|
Stopped,
|
||||||
FirmwareUpdateNeeded,
|
FirmwareUpdateNeeded,
|
||||||
Unkown2,
|
Unknown2,
|
||||||
Unkown3,
|
Unknown3,
|
||||||
Unkown4,
|
Unknown4,
|
||||||
FirmwareVersionRequested,
|
FirmwareVersionRequested,
|
||||||
FirmwareVersionIsInvalid,
|
FirmwareVersionIsInvalid,
|
||||||
Ready,
|
Ready,
|
||||||
|
@ -121,20 +121,20 @@ enum class IrSensorFunctionLevel : u8 {
|
||||||
|
|
||||||
// This is nn::irsensor::MomentProcessorPreprocess
|
// This is nn::irsensor::MomentProcessorPreprocess
|
||||||
enum class MomentProcessorPreprocess : u32 {
|
enum class MomentProcessorPreprocess : u32 {
|
||||||
Unkown0,
|
Unknown0,
|
||||||
Unkown1,
|
Unknown1,
|
||||||
};
|
};
|
||||||
|
|
||||||
// This is nn::irsensor::PackedMomentProcessorPreprocess
|
// This is nn::irsensor::PackedMomentProcessorPreprocess
|
||||||
enum class PackedMomentProcessorPreprocess : u8 {
|
enum class PackedMomentProcessorPreprocess : u8 {
|
||||||
Unkown0,
|
Unknown0,
|
||||||
Unkown1,
|
Unknown1,
|
||||||
};
|
};
|
||||||
|
|
||||||
// This is nn::irsensor::PointingStatus
|
// This is nn::irsensor::PointingStatus
|
||||||
enum class PointingStatus : u32 {
|
enum class PointingStatus : u32 {
|
||||||
Unkown0,
|
Unknown0,
|
||||||
Unkown1,
|
Unknown1,
|
||||||
};
|
};
|
||||||
|
|
||||||
struct IrsRect {
|
struct IrsRect {
|
||||||
|
|
|
@ -2118,7 +2118,7 @@ void Hid::WritePalmaWaveEntry(Kernel::HLERequestContext& ctx) {
|
||||||
ASSERT_MSG(t_mem->GetSize() == 0x3000, "t_mem has incorrect size");
|
ASSERT_MSG(t_mem->GetSize() == 0x3000, "t_mem has incorrect size");
|
||||||
|
|
||||||
LOG_WARNING(Service_HID,
|
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={}",
|
"t_mem_handle=0x{:08X}, t_mem_size={}, size={}",
|
||||||
connection_handle.npad_id, wave_set, unknown, t_mem_handle, t_mem_size, size);
|
connection_handle.npad_id, wave_set, unknown, t_mem_handle, t_mem_size, size);
|
||||||
|
|
||||||
|
|
|
@ -37,10 +37,10 @@ private:
|
||||||
u8 pointing_status;
|
u8 pointing_status;
|
||||||
INSERT_PADDING_BYTES(3);
|
INSERT_PADDING_BYTES(3);
|
||||||
u32 unknown;
|
u32 unknown;
|
||||||
float unkown_float1;
|
float unknown_float1;
|
||||||
float position_x;
|
float position_x;
|
||||||
float position_y;
|
float position_y;
|
||||||
float unkown_float2;
|
float unknown_float2;
|
||||||
Core::IrSensor::IrsRect window_of_interest;
|
Core::IrSensor::IrsRect window_of_interest;
|
||||||
};
|
};
|
||||||
static_assert(sizeof(PointingProcessorMarkerData) == 0x20,
|
static_assert(sizeof(PointingProcessorMarkerData) == 0x20,
|
||||||
|
|
Reference in New Issue