From ab46aa8836b9ac48b20394bf7417d1fd31b6f448 Mon Sep 17 00:00:00 2001 From: emb <> Date: Fri, 30 Jan 2015 18:03:37 -0600 Subject: [PATCH] Fixing gcc compiler error for enumeration. --- RetroFE/Source/Graphics/Component/ScrollingList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RetroFE/Source/Graphics/Component/ScrollingList.cpp b/RetroFE/Source/Graphics/Component/ScrollingList.cpp index 154e888..f38a3ef 100644 --- a/RetroFE/Source/Graphics/Component/ScrollingList.cpp +++ b/RetroFE/Source/Graphics/Component/ScrollingList.cpp @@ -626,7 +626,7 @@ void ScrollingList::SetScrollDirection(ScrollDirection direction) { RequestedScrollDirection = direction; - ScrollStopRequested = (direction == ScrollDirection::ScrollDirectionIdle); + ScrollStopRequested = (direction == ScrollDirectionIdle); } void ScrollingList::RemoveSelectedItem()