diff --git a/Docs/Changelog_sm5.txt b/Docs/Changelog_sm5.txt index 7e541ca6e0..2621143e0b 100644 --- a/Docs/Changelog_sm5.txt +++ b/Docs/Changelog_sm5.txt @@ -6,9 +6,13 @@ ________________________________________________________________________________ ================================================================================ -StepMania 5.0 alpha 2 | 201203?? +StepMania 5.0 alpha 2 | 2012033? -------------------------------------------------------------------------------- +2012/03/30 +---------- +* [GameManager] Allow beat single7 and versus7 to be shown in Demonstration. [AJ] + 2012/03/28 ---------- * [ScoreKeeperRave] Actually handle hold scores in HandleHoldScore(). diff --git a/src/GameManager.cpp b/src/GameManager.cpp index 35f0a4f12b..feadb7ff21 100644 --- a/src/GameManager.cpp +++ b/src/GameManager.cpp @@ -1679,7 +1679,7 @@ static const Style g_Style_Beat_Single7 = { // STYLE_BEAT_SINGLE7 true, // m_bUsedForGameplay true, // m_bUsedForEdit - false, // m_bUsedForDemonstration + true, // m_bUsedForDemonstration false, // m_bUsedForHowToPlay "single7", // m_szName StepsType_beat_single7, // m_StepsType @@ -1723,7 +1723,7 @@ static const Style g_Style_Beat_Versus7 = { // STYLE_BEAT_VERSUS7 true, // m_bUsedForGameplay true, // m_bUsedForEdit - false, // m_bUsedForDemonstration + true, // m_bUsedForDemonstration false, // m_bUsedForHowToPlay "versus7", // m_szName StepsType_beat_versus7, // m_StepsType