VideoConfig: Add const specifier to IsVSync() member function

This member function doesn't alter VideoConfig's state.
This commit is contained in:
Lioncash 2017-11-10 22:21:37 -05:00
commit 8e654528fc
2 changed files with 2 additions and 2 deletions

View file

@ -58,7 +58,7 @@ struct VideoConfig final
void Refresh();
void VerifyValidity();
void UpdateProjectionHack();
bool IsVSync();
bool IsVSync() const;
// General
bool bVSync;