1. Removed the custom screen size functions again (the ones I added in revision 2310). All games I tried are now full screen so it's probably not needed any more.

2. Disabled my XFB supplements when the real XFB is on, since they are supposed to supplement each other.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2318 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
John Peterson
2009-02-20 13:35:43 +00:00
parent e0593b1041
commit cfcfef9b51
6 changed files with 16 additions and 139 deletions

View File

@ -85,11 +85,6 @@ void Config::Load()
iniFile.Get("Hacks", "ProjectionHax1", &bProjectionHax1, 0);
iniFile.Get("Hacks", "ProjectionHax2", &bProjectionHax2, 0);
iniFile.Get("Hacks", "EFBToTextureEnable", &bCopyEFBToRAM, 0);
iniFile.Get("Hacks", "ScreenSize", &bScreenSize, false);
iniFile.Get("Hacks", "ScreenWidth", &iScreenWidth, 100);
iniFile.Get("Hacks", "ScreenHeight", &iScreenHeight, 100);
iniFile.Get("Hacks", "ScreenLeft", &iScreenLeft, 0);
iniFile.Get("Hacks", "ScreenTop", &iScreenTop, 0);
}
void Config::Save()
@ -131,11 +126,6 @@ void Config::Save()
iniFile.Set("Hacks", "ProjectionHax1", bProjectionHax1);
iniFile.Set("Hacks", "ProjectionHax2", bProjectionHax2);
iniFile.Set("Hacks", "EFBToTextureEnable", bCopyEFBToRAM);
iniFile.Set("Hacks", "ScreenSize", bScreenSize);
iniFile.Set("Hacks", "ScreenWidth", iScreenWidth);
iniFile.Set("Hacks", "ScreenHeight", iScreenHeight);
iniFile.Set("Hacks", "ScreenLeft", iScreenLeft);
iniFile.Set("Hacks", "ScreenTop", iScreenTop);
iniFile.Save(FULL_CONFIG_DIR "gfx_opengl.ini");
}