Update SettingsPage-GameBrowser.cpp
Fix spacing, title case, capitalization, and add newline
This commit is contained in:
parent
a20316cf2b
commit
daa5c3589b
|
@ -93,11 +93,11 @@ void COptionsGameBrowserPage::AddFieldClicked(UINT /*Code*/, int /*id*/, HWND /*
|
|||
{
|
||||
return;
|
||||
}
|
||||
//remove from list
|
||||
// Remove from list
|
||||
int i = m_Avaliable.GetItemData(index);
|
||||
m_Avaliable.DeleteString(index);
|
||||
|
||||
//select next in list
|
||||
// Select next in list
|
||||
int listCount = m_Avaliable.GetCount();
|
||||
if (index >= listCount) { index -= 1; }
|
||||
m_Avaliable.SetCurSel(index);
|
||||
|
@ -119,11 +119,11 @@ void COptionsGameBrowserPage::RemoveFieldClicked(UINT /*Code*/, int /*id*/, HWND
|
|||
{
|
||||
return;
|
||||
}
|
||||
//remove from list
|
||||
// Remove from list
|
||||
int i = m_Using.GetItemData(index);
|
||||
m_Using.DeleteString(index);
|
||||
|
||||
//select next in list
|
||||
// Select next in list
|
||||
int listCount = m_Using.GetCount();
|
||||
if (index >= listCount) { index -= 1; }
|
||||
m_Using.SetCurSel(index);
|
||||
|
|
Loading…
Reference in New Issue