From 5a77790859be52cb7879ca8f0f3837128e30732d Mon Sep 17 00:00:00 2001 From: refractionpcsx2 Date: Fri, 15 Apr 2022 23:13:27 +0100 Subject: [PATCH] BIOS/GUI: Mark Qt only variables as maybe unused --- pcsx2/ps2/BiosTools.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pcsx2/ps2/BiosTools.h b/pcsx2/ps2/BiosTools.h index d783da900f..6d8edbd7a5 100644 --- a/pcsx2/ps2/BiosTools.h +++ b/pcsx2/ps2/BiosTools.h @@ -28,7 +28,8 @@ struct BiosDebugInformation u32 threadListAddr; }; -static const char* BiosZoneStrings[] { +// The following two arrays are used for Qt +[[maybe_unused]] static const char* BiosZoneStrings[] { "T10K", "Test", "Japan", @@ -40,7 +41,7 @@ static const char* BiosZoneStrings[] { nullptr }; -static const char* BiosZoneBytes[] +[[maybe_unused]] static const char* BiosZoneBytes[] { "T", "X", "J", "A", "E", "H", "P", "C", nullptr };