Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…into laser-changes
  • Loading branch information
ASleepyCat committed Dec 13, 2020
2 parents 961d4f7 + 41804b7 commit 86f7722
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Main/src/ChallengeSelect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1669,6 +1669,11 @@ bool ChallengeManager::m_setupNextChart()
else
flags = GameFlags::None;

//TODO(itszn) should we have an option to force effective
GaugeTypes gaugeType = g_gameConfig.GetEnum<Enum_GaugeTypes>(GameConfigKeys::GaugeType);
if (gaugeType == GaugeTypes::Hard)
flags = flags | GameFlags::Hard;

if (m_currentOptions.mirror.Get(false))
flags = flags | GameFlags::Mirror;

Expand Down
2 changes: 1 addition & 1 deletion Main/src/Game.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2178,7 +2178,7 @@ class Game_Impl : public Game
if(!SkipIntro() && !m_isPracticeSetup)
SkipOutro();
}
else if(code == SDL_SCANCODE_PAGEUP && !IsMultiplayerGame() && IsChallenge())
else if(code == SDL_SCANCODE_PAGEUP && !IsMultiplayerGame() && !IsChallenge())
{
m_audioPlayback.Advance(5000);
}
Expand Down

0 comments on commit 86f7722

Please sign in to comment.