Cosmetics.

This commit is contained in:
Jules Blok
2016-11-13 22:16:29 +01:00
parent aa0e4472c0
commit 7e35a47b51
5 changed files with 11 additions and 11 deletions

View File

@ -1255,7 +1255,7 @@ void Renderer::SetFullscreen(bool enable_fullscreen)
D3D::SetFullscreenState(enable_fullscreen);
}
bool Renderer::IsFullscreen()
bool Renderer::IsFullscreen() const
{
return D3D::GetFullscreenState();
}

View File

@ -26,7 +26,7 @@ public:
void SetInterlacingMode() override;
void SetViewport() override;
void SetFullscreen(bool enable_fullscreen) override;
bool IsFullscreen() override;
bool IsFullscreen() const override;
// TODO: Fix confusing names (see ResetAPIState and RestoreAPIState)
void ApplyState(bool bUseDstAlpha) override;