summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Vandaƫle <joshua@vandaele.software>2026-07-15 14:31:03 +0200
committerJoshua Vandaƫle <joshua@vandaele.software>2026-07-25 05:19:26 +0200
commit1edea92358ed060d692e238f7441831b19dfa383 (patch)
treeba4731033d0aff877b58c554e660c530f824590b
parent707d3c7a732634ad8d522bd27e52b075f54ac4f3 (diff)
HSP_DeviceGBPlayer: Resolve shadowed variable warning
-rw-r--r--Source/Core/Core/HW/HSP/HSP_DeviceGBPlayer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Core/HW/HSP/HSP_DeviceGBPlayer.cpp b/Source/Core/Core/HW/HSP/HSP_DeviceGBPlayer.cpp
index ccc6e29e16..c7f37ca0b1 100644
--- a/Source/Core/Core/HW/HSP/HSP_DeviceGBPlayer.cpp
+++ b/Source/Core/Core/HW/HSP/HSP_DeviceGBPlayer.cpp
@@ -162,8 +162,8 @@ private:
u8 m_bits_per_sample = 9;
};
-CGBPlayer_mGBA::CGBPlayer_mGBA(Core::System& system, CHSPDevice_GBPlayer* player)
- : IGBPlayer(system, player), m_gba_core{m_system, Config::GBPLAYER_GBA_INDEX}
+CGBPlayer_mGBA::CGBPlayer_mGBA(Core::System& system, CHSPDevice_GBPlayer* gbplayer)
+ : IGBPlayer(system, gbplayer), m_gba_core{m_system, Config::GBPLAYER_GBA_INDEX}
{
auto& core_timing = m_system.GetCoreTiming();