From aff802e502138bbee9fc4192ae05cfd9fd58728e Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Thu, 7 Jul 2011 15:27:09 -0400 Subject: [PATCH] Move Display enum to Steps. Song still compiles. --- src/Song.h | 8 -------- src/Steps.h | 8 ++++++++ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Song.h b/src/Song.h index 55a3365229..2931e6d82e 100644 --- a/src/Song.h +++ b/src/Song.h @@ -39,14 +39,6 @@ enum BackgroundLayer BACKGROUND_LAYER_Invalid }; -/** @brief The different ways of displaying the BPM. */ -enum DisplayBPM -{ - DISPLAY_BPM_ACTUAL, /**< Display the song's actual BPM. */ - DISPLAY_BPM_SPECIFIED, /**< Display a specified value or values. */ - DISPLAY_BPM_RANDOM /**< Display a random selection of BPMs. */ -}; - /** @brief A custom foreach loop for the different background layers. */ #define FOREACH_BackgroundLayer( bl ) FOREACH_ENUM( BackgroundLayer, bl ) diff --git a/src/Steps.h b/src/Steps.h index 4704249b01..781cc60653 100644 --- a/src/Steps.h +++ b/src/Steps.h @@ -22,6 +22,14 @@ struct lua_State; */ const int MAX_STEPS_DESCRIPTION_LENGTH = 255; +/** @brief The different ways of displaying the BPM. */ +enum DisplayBPM +{ + DISPLAY_BPM_ACTUAL, /**< Display the song's actual BPM. */ + DISPLAY_BPM_SPECIFIED, /**< Display a specified value or values. */ + DISPLAY_BPM_RANDOM /**< Display a random selection of BPMs. */ +}; + /** * @brief Holds note information for a Song. *