Cosmetic changes based on feedback on PR #506.

This commit is contained in:
Jules Blok
2014-07-26 12:43:49 +02:00
parent eea7086b23
commit 6724ce6275
10 changed files with 40 additions and 34 deletions

View File

@ -100,8 +100,7 @@ struct VideoConfig final
bool bAnaglyphStereo;
int iAnaglyphStereoSeparation;
int iAnaglyphFocalAngle;
bool b3DVision;
bool bForceBorderlessFullscreen;
bool bBorderlessFullscreen;
// Hacks
bool bEFBAccessEnable;
@ -153,7 +152,7 @@ struct VideoConfig final
bool VirtualXFBEnabled() const { return bUseXFB && !bUseRealXFB; }
bool EFBCopiesToTextureEnabled() const { return bEFBCopyEnable && bCopyEFBToTexture; }
bool EFBCopiesToRamEnabled() const { return bEFBCopyEnable && !bCopyEFBToTexture; }
bool ExclusiveFullscreenEnabled() const { return backend_info.bSupportsExclusiveFullscreen && !bForceBorderlessFullscreen; }
bool ExclusiveFullscreenEnabled() const { return bFullscreen && !bBorderlessFullscreen; }
};
extern VideoConfig g_Config;