Skip to content
Permalink
Browse files
Merge pull request #6184 from lioncash/const
VideoConfig: Add const specifier to IsVSync() member function
  • Loading branch information
Helios747 committed Nov 11, 2017
2 parents 126b7ea + 8e65452 commit 6161bda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
@@ -180,7 +180,7 @@ void VideoConfig::VerifyValidity()
}
}

bool VideoConfig::IsVSync()
bool VideoConfig::IsVSync() const
{
return bVSync && !Core::GetIsThrottlerTempDisabled();
}
@@ -58,7 +58,7 @@ struct VideoConfig final
void Refresh();
void VerifyValidity();
void UpdateProjectionHack();
bool IsVSync();
bool IsVSync() const;

// General
bool bVSync;

0 comments on commit 6161bda

Please sign in to comment.