Added a game property for the "Enable CPU Access" video option. Patch by Link_to_the_past.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6641 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
skidau
2010-12-22 01:05:29 +00:00
parent 9584b5b335
commit 0d5480073f
3 changed files with 16 additions and 1 deletions

View File

@ -135,6 +135,8 @@ void VideoConfig::GameIniLoad(const char *ini_file)
iniFile.Get("Video", "EFBCopyEnable", &bEFBCopyEnable);
if (iniFile.Exists("Video", "EFBCopyDisableHotKey"))
iniFile.Get("Video", "EFBCopyDisableHotKey", &bOSDHotKey);
if (iniFile.Exists("Video", "EFBAccessEnable"))
iniFile.Get("Video", "EFBAccessEnable", &bEFBAccessEnable);
if (iniFile.Exists("Video", "EFBToTextureEnable"))
iniFile.Get("Video", "EFBToTextureEnable", &bCopyEFBToTexture);
if (iniFile.Exists("Video", "EFBScaledCopy"))