From a1b5cdd58c70a90caa504ecda5fc0733cf94b5b0 Mon Sep 17 00:00:00 2001 From: "Derek \"Turtle\" Roe" Date: Wed, 17 Mar 2021 03:29:32 -0500 Subject: [PATCH] Update MainWindow.h Add spacing, add capitalization where appropriate --- Source/Project64/UserInterface/MainWindow.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Source/Project64/UserInterface/MainWindow.h b/Source/Project64/UserInterface/MainWindow.h index 57d835c11..ce8fd58e5 100644 --- a/Source/Project64/UserInterface/MainWindow.h +++ b/Source/Project64/UserInterface/MainWindow.h @@ -7,10 +7,10 @@ #include #include -class CGfxPlugin; //Plugin that controls the rendering -class CAudioPlugin; //Plugin for audio, need the hwnd -class CControl_Plugin; //Controller needs hwnd to see if it is the focused window -class CBaseMenu; //Menu for the gui +class CGfxPlugin; // Plugin that controls the rendering +class CAudioPlugin; // Plugin for audio, need the hwnd +class CControl_Plugin; // Controller needs hwnd to see if it is the focused window +class CBaseMenu; // Menu for the GUI class CN64System; class CriticalSection; @@ -88,7 +88,7 @@ private: void ChangeWinSize(long width, long height); void Create(const char * WindowTitle); void CreateStatusBar(void); - void Resize(DWORD fwSizeType, WORD nWidth, WORD nHeight); //responding to WM_SIZE + void Resize(DWORD fwSizeType, WORD nWidth, WORD nHeight); // Responding to WM_SIZE void AddRecentRom(const char * ImagePath); void SetWindowCaption(const wchar_t * Caption); void ShowRomBrowser(void);