mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
mark all local variables as static
This commit is contained in:
@ -82,7 +82,7 @@
|
||||
size_t CGameListCtrl::m_currentItem = 0;
|
||||
size_t CGameListCtrl::m_numberItem = 0;
|
||||
std::string CGameListCtrl::m_currentFilename;
|
||||
bool sorted = false;
|
||||
static bool sorted = false;
|
||||
|
||||
extern CFrame* main_frame;
|
||||
|
||||
@ -657,7 +657,7 @@ const GameListItem *CGameListCtrl::GetISO(size_t index) const
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
CGameListCtrl *caller;
|
||||
static CGameListCtrl *caller;
|
||||
static int wxCALLBACK wxListCompare(wxIntPtr item1, wxIntPtr item2, wxIntPtr sortData)
|
||||
{
|
||||
// return 1 if item1 > item2
|
||||
|
Reference in New Issue
Block a user