diff --git a/stepmania/src/StepMania.dsp b/stepmania/src/StepMania.dsp index 3e0b1b7765..de4f801bcf 100644 --- a/stepmania/src/StepMania.dsp +++ b/stepmania/src/StepMania.dsp @@ -784,6 +784,14 @@ SOURCE=.\GhostArrows.h # End Source File # Begin Source File +SOURCE=.\GranularityIndicator.cpp +# End Source File +# Begin Source File + +SOURCE=.\GranularityIndicator.h +# End Source File +# Begin Source File + SOURCE=.\GrayArrow.cpp # End Source File # Begin Source File diff --git a/stepmania/src/ThemeManager.cpp b/stepmania/src/ThemeManager.cpp index 219c4fc9f7..7294815234 100644 --- a/stepmania/src/ThemeManager.cpp +++ b/stepmania/src/ThemeManager.cpp @@ -72,6 +72,7 @@ CString ThemeManager::ElementToAssetPath( ThemeElement te ) case GRAPHIC_DANGER_BACKGROUND: sAssetPath = "Graphics\\danger background"; break; case GRAPHIC_ARROWS_LEFT: sAssetPath = "Graphics\\arrows left 1x4"; break; case GRAPHIC_ARROWS_RIGHT: sAssetPath = "Graphics\\arrows right 1x4"; break; + case GRAPHIC_EDIT_BACKGROUND: sAssetPath = "Graphics\\edit background"; break; case SOUND_FAILED: sAssetPath = "Sounds\\failed"; break; case SOUND_ASSIST: sAssetPath = "Sounds\\Assist"; break; diff --git a/stepmania/src/ThemeManager.h b/stepmania/src/ThemeManager.h index 7acf11c35a..e01dbca45a 100644 --- a/stepmania/src/ThemeManager.h +++ b/stepmania/src/ThemeManager.h @@ -66,6 +66,7 @@ enum ThemeElement { GRAPHIC_DANGER_BACKGROUND, GRAPHIC_ARROWS_LEFT, GRAPHIC_ARROWS_RIGHT, + GRAPHIC_EDIT_BACKGROUND, SOUND_FAILED, SOUND_ASSIST,