Update Notification.cpp

Add spacing, fix title case, change rom to ROM, adjust wording, and add newline
This commit is contained in:
Derek "Turtle" Roe 2021-03-17 03:31:15 -05:00
parent bfe77e3416
commit 4199b3b4e5
1 changed files with 5 additions and 5 deletions

View File

@ -167,10 +167,10 @@ void CNotificationImp::FatalError(const char * Message) const
void CNotificationImp::AddRecentDir(const char * RomDir)
{
//Validate the passed string
// Validate the passed string
if (HIWORD(RomDir) == NULL) { return; }
//Get Information about the stored rom list
// Get information about the stored ROM list
size_t MaxRememberedDirs = UISettingsLoadDword(Directory_RecentGameDirCount);
strlist RecentDirs;
size_t i;
@ -184,7 +184,7 @@ void CNotificationImp::AddRecentDir(const char * RomDir)
RecentDirs.push_back(RecentDir);
}
//See if the dir is already in the list if so then move it to the top of the list
// See if the directory is already in the list, if so then move it to the top of the list
strlist::iterator iter;
for (iter = RecentDirs.begin(); iter != RecentDirs.end(); iter++)
{
@ -225,7 +225,7 @@ void CNotificationImp::ShowRomBrowser(void)
if (m_hWnd == NULL) { return; }
if (UISettingsLoadBool(RomBrowser_Enabled))
{
//Display the rom browser
//Display the ROM browser
m_hWnd->ShowRomList();
m_hWnd->HighLightLastRom();
}
@ -276,4 +276,4 @@ void CNotificationImp::BreakPoint(const char * FileName, int LineNumber)
g_BaseSystem->CloseCpu();
}
}
}
}