diff options
Diffstat (limited to 'src/core/hle')
| -rw-r--r-- | src/core/hle/service/boss/boss.cpp | 4 | ||||
| -rw-r--r-- | src/core/hle/service/cfg/cfg.cpp | 1 | ||||
| -rw-r--r-- | src/core/hle/service/mic_u.cpp | 5 | ||||
| -rw-r--r-- | src/core/hle/service/soc_u.cpp | 4 | 
4 files changed, 6 insertions, 8 deletions
| diff --git a/src/core/hle/service/boss/boss.cpp b/src/core/hle/service/boss/boss.cpp index 6ab16ccd5..e0de037f8 100644 --- a/src/core/hle/service/boss/boss.cpp +++ b/src/core/hle/service/boss/boss.cpp @@ -2,6 +2,7 @@  // Licensed under GPLv2 or any later version  // Refer to the license.txt file included. +#include <cinttypes>  #include "core/hle/service/boss/boss.h"  #include "core/hle/service/boss/boss_p.h"  #include "core/hle/service/boss/boss_u.h" @@ -33,7 +34,8 @@ void InitializeSession(Service::Interface* self) {      cmd_buff[0] = IPC::MakeHeader(0x1, 0x1, 0);      cmd_buff[1] = RESULT_SUCCESS.raw; -    LOG_WARNING(Service_BOSS, "(STUBBED) unk_param=0x%016X, translation=0x%08X, unk_param4=0x%08X", +    LOG_WARNING(Service_BOSS, +                "(STUBBED) unk_param=0x%016" PRIX64 ", translation=0x%08X, unk_param4=0x%08X",                  unk_param, translation, unk_param4);  } diff --git a/src/core/hle/service/cfg/cfg.cpp b/src/core/hle/service/cfg/cfg.cpp index 0bf59eb76..59dd6d1cd 100644 --- a/src/core/hle/service/cfg/cfg.cpp +++ b/src/core/hle/service/cfg/cfg.cpp @@ -84,7 +84,6 @@ struct ConsoleCountryInfo {  static_assert(sizeof(ConsoleCountryInfo) == 4, "ConsoleCountryInfo must be exactly 4 bytes");  } -static const u64 CFG_SAVE_ID = 0x00010017;  static const u64 CONSOLE_UNIQUE_ID = 0xDEADC0DE;  static const ConsoleModelInfo CONSOLE_MODEL = {NINTENDO_3DS_XL, {0, 0, 0}};  static const u8 CONSOLE_LANGUAGE = LANGUAGE_EN; diff --git a/src/core/hle/service/mic_u.cpp b/src/core/hle/service/mic_u.cpp index 4f1dd2fce..c62f8afc6 100644 --- a/src/core/hle/service/mic_u.cpp +++ b/src/core/hle/service/mic_u.cpp @@ -99,7 +99,8 @@ static void StartSampling(Interface* self) {      is_sampling = true;      LOG_WARNING(Service_MIC, "(STUBBED) called, encoding=%u, sample_rate=%u, "                               "audio_buffer_offset=%d, audio_buffer_size=%u, audio_buffer_loop=%u", -                encoding, sample_rate, audio_buffer_offset, audio_buffer_size, audio_buffer_loop); +                static_cast<u32>(encoding), static_cast<u32>(sample_rate), audio_buffer_offset, +                audio_buffer_size, audio_buffer_loop);  }  /** @@ -114,7 +115,7 @@ static void AdjustSampling(Interface* self) {      u32* cmd_buff = Kernel::GetCommandBuffer();      sample_rate = static_cast<SampleRate>(cmd_buff[1] & 0xFF);      cmd_buff[1] = RESULT_SUCCESS.raw; // No error -    LOG_WARNING(Service_MIC, "(STUBBED) called, sample_rate=%u", sample_rate); +    LOG_WARNING(Service_MIC, "(STUBBED) called, sample_rate=%u", static_cast<u32>(sample_rate));  }  /** diff --git a/src/core/hle/service/soc_u.cpp b/src/core/hle/service/soc_u.cpp index c3918cdd0..dcc5c3c90 100644 --- a/src/core/hle/service/soc_u.cpp +++ b/src/core/hle/service/soc_u.cpp @@ -603,7 +603,6 @@ static void RecvFrom(Interface* self) {      u32 socket_handle = cmd_buffer[1];      u32 len = cmd_buffer[2];      u32 flags = cmd_buffer[3]; -    socklen_t addr_len = static_cast<socklen_t>(cmd_buffer[4]);      struct {          u32 output_buffer_descriptor; @@ -693,7 +692,6 @@ static void Poll(Interface* self) {  static void GetSockName(Interface* self) {      u32* cmd_buffer = Kernel::GetCommandBuffer();      u32 socket_handle = cmd_buffer[1]; -    socklen_t ctr_len = cmd_buffer[2];      // Memory address of the ctr_dest_addr structure      VAddr ctr_dest_addr_addr = cmd_buffer[0x104 >> 2]; @@ -734,7 +732,6 @@ static void Shutdown(Interface* self) {  static void GetPeerName(Interface* self) {      u32* cmd_buffer = Kernel::GetCommandBuffer();      u32 socket_handle = cmd_buffer[1]; -    socklen_t len = cmd_buffer[2];      // Memory address of the ctr_dest_addr structure      VAddr ctr_dest_addr_addr = cmd_buffer[0x104 >> 2]; @@ -765,7 +762,6 @@ static void Connect(Interface* self) {      // performing nonblocking operations and spinlock until the data is available      u32* cmd_buffer = Kernel::GetCommandBuffer();      u32 socket_handle = cmd_buffer[1]; -    socklen_t len = cmd_buffer[2];      // Memory address of the ctr_input_addr structure      VAddr ctr_input_addr_addr = cmd_buffer[6]; | 
