Removed the disc seek times for GC games and removed the disc speed option on Wii games.
Checked for external exceptions only in mtmsr. Fixes issue 5545.
This commit is contained in:
parent
6b28b3929a
commit
e69c58ee89
|
@ -33,10 +33,6 @@
|
|||
|
||||
// Disc transfer rate measured in bytes per second
|
||||
static const u32 DISC_TRANSFER_RATE_GC = 3125 * 1024;
|
||||
static const u32 DISC_TRANSFER_RATE_WII = 7926 * 1024;
|
||||
|
||||
// Disc access time measured in milliseconds
|
||||
static const u32 DISC_ACCESS_TIME_MS = 128;
|
||||
|
||||
namespace DVDInterface
|
||||
{
|
||||
|
@ -501,8 +497,7 @@ void Write32(const u32 _iValue, const u32 _iAddress)
|
|||
if (!SConfig::GetInstance().m_LocalCoreStartupParameter.bFastDiscSpeed)
|
||||
{
|
||||
u64 ticksUntilTC = m_DILENGTH.Length *
|
||||
(SystemTimers::GetTicksPerSecond() / (SConfig::GetInstance().m_LocalCoreStartupParameter.bWii?DISC_TRANSFER_RATE_WII:DISC_TRANSFER_RATE_GC)) +
|
||||
(SystemTimers::GetTicksPerSecond() * DISC_ACCESS_TIME_MS / 1000);
|
||||
(SystemTimers::GetTicksPerSecond() / (SConfig::GetInstance().m_LocalCoreStartupParameter.bWii ? 1 : DISC_TRANSFER_RATE_GC));
|
||||
CoreTiming::ScheduleEvent((int)ticksUntilTC, tc);
|
||||
}
|
||||
else
|
||||
|
|
|
@ -131,7 +131,7 @@ void Jit64::mtmsr(UGeckoInstruction inst)
|
|||
FixupBranch eeDisabled = J_CC(CC_Z);
|
||||
|
||||
MOV(32, R(EAX), M((void*)&PowerPC::ppcState.Exceptions));
|
||||
TEST(32, R(EAX), R(EAX));
|
||||
TEST(32, R(EAX), Imm32(EXCEPTION_EXTERNAL_INT | EXCEPTION_PERFORMANCE_MONITOR | EXCEPTION_DECREMENTER));
|
||||
FixupBranch noExceptionsPending = J_CC(CC_Z);
|
||||
|
||||
MOV(32, M(&PC), Imm32(js.compilerPC + 4));
|
||||
|
|
Loading…
Reference in New Issue