From d2494a77281d7b19e042d8551190936505f760e9 Mon Sep 17 00:00:00 2001 From: "Derek \"Turtle\" Roe" Date: Wed, 17 Mar 2021 03:31:45 -0500 Subject: [PATCH] Update Notification.h Fix title case, rom > ROM, and capitalize where appropriate --- Source/Project64/UserInterface/Notification.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Source/Project64/UserInterface/Notification.h b/Source/Project64/UserInterface/Notification.h index 01d4c49dd..676585838 100644 --- a/Source/Project64/UserInterface/Notification.h +++ b/Source/Project64/UserInterface/Notification.h @@ -17,14 +17,14 @@ public: // Make sure we are not in full screen void WindowMode(void) const; - //Error Messages + // Error messages virtual void DisplayError(const char * Message) const; virtual void DisplayError(LanguageStringID StringID) const; virtual void FatalError(const char * Message) const; virtual void FatalError(LanguageStringID StringID) const; - //User Feedback + // User feedback virtual void DisplayWarning(const char * Message) const; virtual void DisplayWarning(LanguageStringID StringID) const; @@ -33,17 +33,17 @@ public: virtual void DisplayMessage2(const char * Message) const; - // Ask a Yes/No Question to the user, yes = true, no = false + // Ask a yes/no question to the user, yes = true, no = false virtual bool AskYesNoQuestion(const char * Question) const; virtual void BreakPoint(const char * FileName, int32_t LineNumber); void SetWindowCaption(const wchar_t * Caption); - //Remember roms loaded and Rom Dir selected + // Remember ROMS loaded and ROM directory selected void AddRecentDir(const char * RomDir); - //Gui for responses + // GUI for responses void SetMainWindow(CMainGui * Gui); void RefreshMenu(void); void HideRomBrowser(void);