diff --git a/src/ScreenEdit.cpp b/src/ScreenEdit.cpp index 7c5580af68..9d5cf5c843 100644 --- a/src/ScreenEdit.cpp +++ b/src/ScreenEdit.cpp @@ -3986,7 +3986,7 @@ void ScreenEdit::HandleAlterMenuChoice(AlterMenuChoice c, const vector &iAn case left: NoteDataUtil::Turn( m_Clipboard, st, NoteDataUtil::left ); break; case right: NoteDataUtil::Turn( m_Clipboard, st, NoteDataUtil::right ); break; case mirror: NoteDataUtil::Turn( m_Clipboard, st, NoteDataUtil::mirror ); break; - case backwards: NoteDataUtil::Turn( m_Clipboard, st, NoteDataUtil::backwards ); break; + case turn_backwards: NoteDataUtil::Turn( m_Clipboard, st, NoteDataUtil::backwards ); break; case shuffle: NoteDataUtil::Turn( m_Clipboard, st, NoteDataUtil::shuffle ); break; case super_shuffle: NoteDataUtil::Turn( m_Clipboard, st, NoteDataUtil::super_shuffle ); break; } diff --git a/src/ScreenEdit.h b/src/ScreenEdit.h index d6853bf56e..bb68c9d523 100644 --- a/src/ScreenEdit.h +++ b/src/ScreenEdit.h @@ -457,7 +457,7 @@ public: left, /**< Turn the notes as if you were facing to the left. */ right, /**< Turn the notes as if you were facing to the right. */ mirror, /**< Flip the notes vertically. */ - backwards, /**< Turn the notes as if you were facing away from the machine. */ + turn_backwards, /**< Turn the notes as if you were facing away from the machine. */ shuffle, /**< Replace one column with another column. */ super_shuffle, /**< Replace each note individually. */ NUM_TURN_TYPES