From 23832ac653de7189b7282ea684a424912b0a79fc Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Sun, 16 Oct 2011 15:48:50 -0400 Subject: [PATCH] [backwards] Compile fix: two "backwards" here. --- src/ScreenEdit.cpp | 2 +- src/ScreenEdit.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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