diff options
| -rw-r--r-- | src/core/hle/service/am/am.cpp | 2 | ||||
| -rw-r--r-- | src/core/hle/service/apm/apm_controller.cpp | 2 | ||||
| -rw-r--r-- | src/core/hle/service/hid/hid.cpp | 14 | ||||
| -rw-r--r-- | src/core/hle/service/mm/mm_u.cpp | 10 | ||||
| -rw-r--r-- | src/core/hle/service/nvdrv/devices/nvmap.cpp | 4 |
5 files changed, 16 insertions, 16 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp index 118f226e4..6fb7e198e 100644 --- a/src/core/hle/service/am/am.cpp +++ b/src/core/hle/service/am/am.cpp | |||
| @@ -754,7 +754,7 @@ void ICommonStateGetter::ReceiveMessage(Kernel::HLERequestContext& ctx) { | |||
| 754 | } | 754 | } |
| 755 | 755 | ||
| 756 | void ICommonStateGetter::GetCurrentFocusState(Kernel::HLERequestContext& ctx) { | 756 | void ICommonStateGetter::GetCurrentFocusState(Kernel::HLERequestContext& ctx) { |
| 757 | LOG_WARNING(Service_AM, "(STUBBED) called"); | 757 | LOG_DEBUG(Service_AM, "(STUBBED) called"); |
| 758 | 758 | ||
| 759 | IPC::ResponseBuilder rb{ctx, 3}; | 759 | IPC::ResponseBuilder rb{ctx, 3}; |
| 760 | rb.Push(ResultSuccess); | 760 | rb.Push(ResultSuccess); |
diff --git a/src/core/hle/service/apm/apm_controller.cpp b/src/core/hle/service/apm/apm_controller.cpp index 4e710491b..d6de84066 100644 --- a/src/core/hle/service/apm/apm_controller.cpp +++ b/src/core/hle/service/apm/apm_controller.cpp | |||
| @@ -80,7 +80,7 @@ PerformanceConfiguration Controller::GetCurrentPerformanceConfiguration(Performa | |||
| 80 | } | 80 | } |
| 81 | 81 | ||
| 82 | void Controller::SetClockSpeed(u32 mhz) { | 82 | void Controller::SetClockSpeed(u32 mhz) { |
| 83 | LOG_INFO(Service_APM, "called, mhz={:08X}", mhz); | 83 | LOG_DEBUG(Service_APM, "called, mhz={:08X}", mhz); |
| 84 | // TODO(DarkLordZach): Actually signal core_timing to change clock speed. | 84 | // TODO(DarkLordZach): Actually signal core_timing to change clock speed. |
| 85 | // TODO(Rodrigo): Remove [[maybe_unused]] when core_timing is used. | 85 | // TODO(Rodrigo): Remove [[maybe_unused]] when core_timing is used. |
| 86 | } | 86 | } |
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp index 7909141c0..3d3457160 100644 --- a/src/core/hle/service/hid/hid.cpp +++ b/src/core/hle/service/hid/hid.cpp | |||
| @@ -819,12 +819,12 @@ void Hid::EnableSixAxisSensorUnalteredPassthrough(Kernel::HLERequestContext& ctx | |||
| 819 | const auto result = controller.EnableSixAxisSensorUnalteredPassthrough( | 819 | const auto result = controller.EnableSixAxisSensorUnalteredPassthrough( |
| 820 | parameters.sixaxis_handle, parameters.enabled); | 820 | parameters.sixaxis_handle, parameters.enabled); |
| 821 | 821 | ||
| 822 | LOG_WARNING(Service_HID, | 822 | LOG_DEBUG(Service_HID, |
| 823 | "(STUBBED) called, enabled={}, npad_type={}, npad_id={}, device_index={}, " | 823 | "(STUBBED) called, enabled={}, npad_type={}, npad_id={}, device_index={}, " |
| 824 | "applet_resource_user_id={}", | 824 | "applet_resource_user_id={}", |
| 825 | parameters.enabled, parameters.sixaxis_handle.npad_type, | 825 | parameters.enabled, parameters.sixaxis_handle.npad_type, |
| 826 | parameters.sixaxis_handle.npad_id, parameters.sixaxis_handle.device_index, | 826 | parameters.sixaxis_handle.npad_id, parameters.sixaxis_handle.device_index, |
| 827 | parameters.applet_resource_user_id); | 827 | parameters.applet_resource_user_id); |
| 828 | 828 | ||
| 829 | IPC::ResponseBuilder rb{ctx, 2}; | 829 | IPC::ResponseBuilder rb{ctx, 2}; |
| 830 | rb.Push(result); | 830 | rb.Push(result); |
| @@ -846,7 +846,7 @@ void Hid::IsSixAxisSensorUnalteredPassthroughEnabled(Kernel::HLERequestContext& | |||
| 846 | const auto result = controller.IsSixAxisSensorUnalteredPassthroughEnabled( | 846 | const auto result = controller.IsSixAxisSensorUnalteredPassthroughEnabled( |
| 847 | parameters.sixaxis_handle, is_unaltered_sisxaxis_enabled); | 847 | parameters.sixaxis_handle, is_unaltered_sisxaxis_enabled); |
| 848 | 848 | ||
| 849 | LOG_WARNING( | 849 | LOG_DEBUG( |
| 850 | Service_HID, | 850 | Service_HID, |
| 851 | "(STUBBED) called, npad_type={}, npad_id={}, device_index={}, applet_resource_user_id={}", | 851 | "(STUBBED) called, npad_type={}, npad_id={}, device_index={}, applet_resource_user_id={}", |
| 852 | parameters.sixaxis_handle.npad_type, parameters.sixaxis_handle.npad_id, | 852 | parameters.sixaxis_handle.npad_type, parameters.sixaxis_handle.npad_id, |
diff --git a/src/core/hle/service/mm/mm_u.cpp b/src/core/hle/service/mm/mm_u.cpp index 5ebb124a7..ba8c0e230 100644 --- a/src/core/hle/service/mm/mm_u.cpp +++ b/src/core/hle/service/mm/mm_u.cpp | |||
| @@ -46,7 +46,7 @@ private: | |||
| 46 | IPC::RequestParser rp{ctx}; | 46 | IPC::RequestParser rp{ctx}; |
| 47 | min = rp.Pop<u32>(); | 47 | min = rp.Pop<u32>(); |
| 48 | max = rp.Pop<u32>(); | 48 | max = rp.Pop<u32>(); |
| 49 | LOG_WARNING(Service_MM, "(STUBBED) called, min=0x{:X}, max=0x{:X}", min, max); | 49 | LOG_DEBUG(Service_MM, "(STUBBED) called, min=0x{:X}, max=0x{:X}", min, max); |
| 50 | 50 | ||
| 51 | current = min; | 51 | current = min; |
| 52 | IPC::ResponseBuilder rb{ctx, 2}; | 52 | IPC::ResponseBuilder rb{ctx, 2}; |
| @@ -54,7 +54,7 @@ private: | |||
| 54 | } | 54 | } |
| 55 | 55 | ||
| 56 | void GetOld(Kernel::HLERequestContext& ctx) { | 56 | void GetOld(Kernel::HLERequestContext& ctx) { |
| 57 | LOG_WARNING(Service_MM, "(STUBBED) called"); | 57 | LOG_DEBUG(Service_MM, "(STUBBED) called"); |
| 58 | 58 | ||
| 59 | IPC::ResponseBuilder rb{ctx, 3}; | 59 | IPC::ResponseBuilder rb{ctx, 3}; |
| 60 | rb.Push(ResultSuccess); | 60 | rb.Push(ResultSuccess); |
| @@ -81,8 +81,8 @@ private: | |||
| 81 | u32 input_id = rp.Pop<u32>(); | 81 | u32 input_id = rp.Pop<u32>(); |
| 82 | min = rp.Pop<u32>(); | 82 | min = rp.Pop<u32>(); |
| 83 | max = rp.Pop<u32>(); | 83 | max = rp.Pop<u32>(); |
| 84 | LOG_WARNING(Service_MM, "(STUBBED) called, input_id=0x{:X}, min=0x{:X}, max=0x{:X}", | 84 | LOG_DEBUG(Service_MM, "(STUBBED) called, input_id=0x{:X}, min=0x{:X}, max=0x{:X}", input_id, |
| 85 | input_id, min, max); | 85 | min, max); |
| 86 | 86 | ||
| 87 | current = min; | 87 | current = min; |
| 88 | IPC::ResponseBuilder rb{ctx, 2}; | 88 | IPC::ResponseBuilder rb{ctx, 2}; |
| @@ -90,7 +90,7 @@ private: | |||
| 90 | } | 90 | } |
| 91 | 91 | ||
| 92 | void Get(Kernel::HLERequestContext& ctx) { | 92 | void Get(Kernel::HLERequestContext& ctx) { |
| 93 | LOG_WARNING(Service_MM, "(STUBBED) called"); | 93 | LOG_DEBUG(Service_MM, "(STUBBED) called"); |
| 94 | 94 | ||
| 95 | IPC::ResponseBuilder rb{ctx, 3}; | 95 | IPC::ResponseBuilder rb{ctx, 3}; |
| 96 | rb.Push(ResultSuccess); | 96 | rb.Push(ResultSuccess); |
diff --git a/src/core/hle/service/nvdrv/devices/nvmap.cpp b/src/core/hle/service/nvdrv/devices/nvmap.cpp index 728bfa00b..d8518149d 100644 --- a/src/core/hle/service/nvdrv/devices/nvmap.cpp +++ b/src/core/hle/service/nvdrv/devices/nvmap.cpp | |||
| @@ -198,7 +198,7 @@ NvResult nvmap::IocParam(const std::vector<u8>& input, std::vector<u8>& output) | |||
| 198 | IocParamParams params; | 198 | IocParamParams params; |
| 199 | std::memcpy(¶ms, input.data(), sizeof(params)); | 199 | std::memcpy(¶ms, input.data(), sizeof(params)); |
| 200 | 200 | ||
| 201 | LOG_WARNING(Service_NVDRV, "(STUBBED) called type={}", params.param); | 201 | LOG_DEBUG(Service_NVDRV, "(STUBBED) called type={}", params.param); |
| 202 | 202 | ||
| 203 | auto object = GetObject(params.handle); | 203 | auto object = GetObject(params.handle); |
| 204 | if (!object) { | 204 | if (!object) { |
| @@ -243,7 +243,7 @@ NvResult nvmap::IocFree(const std::vector<u8>& input, std::vector<u8>& output) { | |||
| 243 | IocFreeParams params; | 243 | IocFreeParams params; |
| 244 | std::memcpy(¶ms, input.data(), sizeof(params)); | 244 | std::memcpy(¶ms, input.data(), sizeof(params)); |
| 245 | 245 | ||
| 246 | LOG_WARNING(Service_NVDRV, "(STUBBED) called"); | 246 | LOG_DEBUG(Service_NVDRV, "(STUBBED) called"); |
| 247 | 247 | ||
| 248 | auto itr = handles.find(params.handle); | 248 | auto itr = handles.find(params.handle); |
| 249 | if (itr == handles.end()) { | 249 | if (itr == handles.end()) { |