quiet warnings about possibly-uninitialized variable usage
This commit is contained in:
parent
e1a3e41bf3
commit
f730b775b6
|
@ -349,8 +349,8 @@ static void DTKStreamingCallback(const std::vector<u8>& audio_data, s64 cycles_l
|
|||
|
||||
// Determine which audio data to read next.
|
||||
static const int MAXIMUM_SAMPLES = 48000 / 2000 * 7; // 3.5ms of 48kHz samples
|
||||
u64 read_offset;
|
||||
u32 read_length;
|
||||
u64 read_offset = 0;
|
||||
u32 read_length = 0;
|
||||
if (s_stream && AudioInterface::IsPlaying())
|
||||
{
|
||||
read_offset = s_audio_position;
|
||||
|
|
|
@ -533,7 +533,7 @@ void BluetoothReal::LoadLinkKeys()
|
|||
std::reverse(address.begin(), address.end());
|
||||
|
||||
const std::string& key_string = pair.substr(index + 1);
|
||||
linkkey_t key;
|
||||
linkkey_t key{};
|
||||
size_t pos = 0;
|
||||
for (size_t i = 0; i < key_string.length(); i = i + 2)
|
||||
{
|
||||
|
|
|
@ -202,7 +202,7 @@ void Jit64::lXXx(UGeckoInstruction inst)
|
|||
// If we're using reg+reg mode and b is an immediate, pretend we're using constant offset mode
|
||||
bool use_constant_offset = inst.OPCD != 31 || gpr.R(b).IsImm();
|
||||
|
||||
s32 offset;
|
||||
s32 offset = 0;
|
||||
if (use_constant_offset)
|
||||
offset = inst.OPCD == 31 ? gpr.R(b).SImm32() : (s32)inst.SIMM_16;
|
||||
// Depending on whether we have an immediate and/or update, find the optimum way to calculate
|
||||
|
|
|
@ -154,7 +154,7 @@ void MemoryCheckDlg::OnOK(wxCommandEvent& event)
|
|||
bool Log = m_radioLog->GetValue() || m_radioBreakLog->GetValue();
|
||||
bool Break = m_radioBreak->GetValue() || m_radioBreakLog->GetValue();
|
||||
|
||||
u32 StartAddress, EndAddress;
|
||||
u32 StartAddress = UINT32_MAX, EndAddress = 0;
|
||||
bool EndAddressOK =
|
||||
EndAddressString.Len() && AsciiToHex(WxStrToStr(EndAddressString), EndAddress);
|
||||
|
||||
|
|
Loading…
Reference in New Issue