Skip to content

Commit

Permalink
Allow excessive on challenges
Browse files Browse the repository at this point in the history
  • Loading branch information
itszn committed Dec 13, 2020
1 parent 9ba718f commit 41804b7
Showing 1 changed file with 5 additions and 0 deletions.
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

0 comments on commit 41804b7

Please sign in to comment.