Update SettingsPage-Game-Plugin.cpp
Fix spacing, title case, capitalization, and add newline
This commit is contained in:
parent
861cea4b4c
commit
ebeddb8d47
|
@ -10,7 +10,7 @@ CGamePluginPage::CGamePluginPage(HWND hParent, const RECT & rcDispay)
|
|||
return;
|
||||
}
|
||||
|
||||
//Set the text for all gui Items
|
||||
// Set the text for all GUI items
|
||||
SetDlgItemText(RSP_ABOUT, wGS(PLUG_ABOUT).c_str());
|
||||
SetDlgItemText(GFX_ABOUT, wGS(PLUG_ABOUT).c_str());
|
||||
SetDlgItemText(AUDIO_ABOUT, wGS(PLUG_ABOUT).c_str());
|
||||
|
@ -119,7 +119,7 @@ void CGamePluginPage::ShowAboutButton(int id)
|
|||
void(CALL *DllAbout) (HWND hWnd);
|
||||
DllAbout = (void(CALL *)(HWND))GetProcAddress(hLib, "DllAbout");
|
||||
|
||||
//call the function from the dll
|
||||
// Call the function from the DLL
|
||||
DllAbout(m_hWnd);
|
||||
|
||||
FreeLibrary(hLib);
|
||||
|
|
Loading…
Reference in New Issue