mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-07 08:39:00 +00:00
Merge pull request #2263 from JosJuice/sudtr-not-instant
Make Speed Up Disc Transfer Rate not instant
This commit is contained in:
commit
5638ddaf6c
1 changed files with 1 additions and 1 deletions
|
@ -669,7 +669,7 @@ DVDReadCommand ExecuteReadCommand(u64 DVD_offset, u32 output_address, u32 DVD_le
|
||||||
}
|
}
|
||||||
|
|
||||||
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bFastDiscSpeed)
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bFastDiscSpeed)
|
||||||
*ticks_until_completion = 0; // An optional hack to speed up loading times
|
*ticks_until_completion = output_length * BUFFER_TRANSFER_RATE; // An optional hack to speed up loading times
|
||||||
else
|
else
|
||||||
*ticks_until_completion = SimulateDiscReadTime(DVD_offset, DVD_length);
|
*ticks_until_completion = SimulateDiscReadTime(DVD_offset, DVD_length);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue