Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[DolphinWX] Remove a duplicate conditional in Frame.cpp
  • Loading branch information
lioncash committed Mar 27, 2013
1 parent 5cea0d9 commit 6fe5f5a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Source/Core/DolphinWX/Src/Frame.cpp
Expand Up @@ -94,8 +94,7 @@ CPanel::CPanel(

case WM_USER_SETCURSOR:
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bHideCursor &&
main_frame->RendererHasFocus() && Core::GetState() == Core::CORE_RUN &&
SConfig::GetInstance().m_LocalCoreStartupParameter.bHideCursor)
main_frame->RendererHasFocus() && Core::GetState() == Core::CORE_RUN)
SetCursor(wxCURSOR_BLANK);
else
SetCursor(wxNullCursor);
Expand Down

0 comments on commit 6fe5f5a

Please sign in to comment.