From fdfc9848b82fa68ae25c2dc8f32254ece3a1edba Mon Sep 17 00:00:00 2001 From: Telperion Date: Tue, 7 Feb 2023 11:36:04 -0800 Subject: [PATCH] handle Mmod choice for per-chart #DISPLAYBPM I think this is the only thing that needs to change?? --- src/Player.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Player.cpp b/src/Player.cpp index 29971600f8..01d7ad3a2d 100644 --- a/src/Player.cpp +++ b/src/Player.cpp @@ -436,8 +436,8 @@ void Player::Init( } else { - ASSERT( GAMESTATE->m_pCurSong != nullptr ); - GAMESTATE->m_pCurSong->GetDisplayBpms( bpms ); + ASSERT( GAMESTATE->m_pCurSteps[pn] != nullptr ); + GAMESTATE->m_pCurSteps[pn]->GetDisplayBpms(bpms); } float fMaxBPM = 0;