From 850aeaf05e9045a01b1516dd3a0d1f51517ab1e3 Mon Sep 17 00:00:00 2001 From: lightningterror <18107717+lightningterror@users.noreply.github.com> Date: Wed, 12 Mar 2025 18:00:22 +0100 Subject: [PATCH] Misc: More warning fixes. --- pcsx2-qt/Debugger/SymbolTree/SymbolTreeWidgets.cpp | 2 +- pcsx2/Vif_Codes.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2-qt/Debugger/SymbolTree/SymbolTreeWidgets.cpp b/pcsx2-qt/Debugger/SymbolTree/SymbolTreeWidgets.cpp index c0f2def309..698baae61f 100644 --- a/pcsx2-qt/Debugger/SymbolTree/SymbolTreeWidgets.cpp +++ b/pcsx2-qt/Debugger/SymbolTree/SymbolTreeWidgets.cpp @@ -1036,7 +1036,7 @@ std::unique_ptr LocalVariableTreeWidget::buildNode( node->live_range = local_variable.live_range; node->symbol = ccc::MultiSymbolHandle(local_variable); - if (const ccc::GlobalStorage* storage = std::get_if(&local_variable.storage)) + if (std::get_if(&local_variable.storage)) node->location = SymbolTreeLocation(SymbolTreeLocation::MEMORY, local_variable.address().value); else if (const ccc::RegisterStorage* storage = std::get_if(&local_variable.storage)) node->location = SymbolTreeLocation(SymbolTreeLocation::REGISTER, storage->dbx_register_number); diff --git a/pcsx2/Vif_Codes.cpp b/pcsx2/Vif_Codes.cpp index 824db8c852..5f141aa061 100644 --- a/pcsx2/Vif_Codes.cpp +++ b/pcsx2/Vif_Codes.cpp @@ -455,7 +455,7 @@ vifOp(vifCode_MSCALF) { vifXRegs.stat.VGW = false; vifFlush(idx); - if (const u32 a = gifUnit.checkPaths(1, 1, 0)) + if ([[maybe_unused]] const u32 a = gifUnit.checkPaths(1, 1, 0)) { GUNIT_WARN("Vif MSCALF: Stall! [%d,%d]", !!(a & 1), !!(a & 2)); vif1Regs.stat.VGW = true;