mirror of https://github.com/PCSX2/pcsx2.git
1. presets: mVU flag hack moved from preset #3 to preset #2 (preset #3 now only changes ee cycle rate to 1 click).
2. Selecting ISO from the list when current source is plugin: menu now updates properly (previously: would stay at plugin). git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4477 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
6b70c34470
commit
c44e5752f6
|
@ -862,17 +862,17 @@ bool AppConfig::IsOkApplyPreset(int n)
|
|||
EmuOptions.Cpu.Recompiler.vuSignOverflow = false; //VU Clamp mode to 'none'
|
||||
|
||||
//best balanced hacks combo?
|
||||
case 2 : //enable mvu flag hack, enable EE timing hack, set EE cyclerate to 1 click.
|
||||
case 2 : //set EE cyclerate to 1 click.
|
||||
eeUsed?0:(eeUsed=true, EmuOptions.Speedhacks.EECycleRate = 1);
|
||||
// EE timing hack appears to break the BIOS text and cause slowdowns in a few titles.
|
||||
//EnableGameFixes = true;
|
||||
//EmuOptions.Gamefixes.EETimingHack = true;
|
||||
EmuOptions.Speedhacks.vuFlagHack = true;
|
||||
|
||||
case 1 : //Recommended speed hacks without mvu flag hack.
|
||||
case 1 : //Recommended speed hacks.
|
||||
EnableSpeedHacks = true;
|
||||
EmuOptions.Speedhacks.IntcStat = true;
|
||||
EmuOptions.Speedhacks.WaitLoop = true;
|
||||
EmuOptions.Speedhacks.vuFlagHack = true;
|
||||
|
||||
case 0 : //Base preset: Mostly pcsx2's defaults.
|
||||
|
||||
|
|
|
@ -153,6 +153,7 @@ wxWindowID SwapOrReset_Iso( wxWindow* owner, IScopedCoreThread& core_control, co
|
|||
}
|
||||
}
|
||||
|
||||
g_Conf->CdvdSource = CDVDsrc_Iso;
|
||||
SysUpdateIsoSrcFile( isoFilename );
|
||||
if( result == wxID_RESET )
|
||||
{
|
||||
|
@ -162,7 +163,7 @@ wxWindowID SwapOrReset_Iso( wxWindow* owner, IScopedCoreThread& core_control, co
|
|||
else
|
||||
{
|
||||
Console.Indent().WriteLn( "HotSwapping to new ISO src image!" );
|
||||
g_Conf->CdvdSource = CDVDsrc_Iso;
|
||||
//g_Conf->CdvdSource = CDVDsrc_Iso;
|
||||
//CoreThread.ChangeCdvdSource();
|
||||
core_control.AllowResume();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue