From 5d2290ba3cd078fa9b709ac3dd67121696c10a81 Mon Sep 17 00:00:00 2001 From: Zopolis4 Date: Fri, 24 Jun 2022 14:57:03 +1000 Subject: [PATCH 1/2] Removed unused variable MAX_MSGLEN in LogManager.cpp --- Source/Core/Common/Logging/LogManager.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/Core/Common/Logging/LogManager.cpp b/Source/Core/Common/Logging/LogManager.cpp index 04078fc06c..2fa86a11b2 100644 --- a/Source/Core/Common/Logging/LogManager.cpp +++ b/Source/Core/Common/Logging/LogManager.cpp @@ -23,8 +23,6 @@ namespace Common::Log { -constexpr size_t MAX_MSGLEN = 1024; - const Config::Info LOGGER_WRITE_TO_FILE{{Config::System::Logger, "Options", "WriteToFile"}, false}; const Config::Info LOGGER_WRITE_TO_CONSOLE{ From 0f07deb0effe307dda6be282706b581ac3d565be Mon Sep 17 00:00:00 2001 From: Zopolis4 Date: Sat, 2 Jul 2022 16:16:54 +1000 Subject: [PATCH 2/2] Remove unused variable in SI_DeviceKeyboard.h left over from SI_DeviceGCController.h --- Source/Core/Core/HW/SI/SI_DeviceKeyboard.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/Source/Core/Core/HW/SI/SI_DeviceKeyboard.h b/Source/Core/Core/HW/SI/SI_DeviceKeyboard.h index 003cd5c8eb..68a89a6070 100644 --- a/Source/Core/Core/HW/SI/SI_DeviceKeyboard.h +++ b/Source/Core/Core/HW/SI/SI_DeviceKeyboard.h @@ -37,9 +37,6 @@ private: KeyArray MapKeys(const KeyboardStatus& key_status) const; - // PADAnalogMode - u8 m_mode = 0; - // Internal counter synchonizing GC and keyboard u8 m_counter = 0; };