Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix sorting bug.
  • Loading branch information
rog9 committed Dec 24, 2012
1 parent 78ff8a7 commit 14a31d9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/Core/DolphinWX/Src/GameListCtrl.cpp
Expand Up @@ -322,9 +322,10 @@ void CGameListCtrl::Update()
}

// Sort items by Title
sorted = false;
wxListEvent event;
event.m_col = SConfig::GetInstance().m_ListSort2;
last_column = 1;
last_column = 0;
OnColumnClick(event);

event.m_col = SConfig::GetInstance().m_ListSort;
Expand Down

0 comments on commit 14a31d9

Please sign in to comment.