Merge pull request #4829 from JosJuice/dvd_chunk

DVDInterface: Chunking and various timing accuracy improvements
This commit is contained in:
JosJuice
2017-02-08 15:01:20 +01:00
committed by GitHub
7 changed files with 336 additions and 182 deletions
+1 -2
View File
@@ -2,12 +2,11 @@
[Core]
# Values set here will override the main Dolphin settings.
FastDiscSpeed = True
[EmuState]
# The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 4
EmulationIssues = Can hang during loading screens if Speed Up Disc Transfer Rate isn't used
EmulationIssues =
[OnLoad]
# Add memory patches to be loaded once on boot here.
+1 -2
View File
@@ -2,12 +2,11 @@
[Core]
# Values set here will override the main Dolphin settings.
FastDiscSpeed = True
[EmuState]
# The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 4
EmulationIssues = Can hang during loading screens if Speed Up Disc Transfer Rate isn't used
EmulationIssues =
[OnLoad]
# Add memory patches to be loaded once on boot here.
-1
View File
@@ -2,7 +2,6 @@
[Core]
# Values set here will override the main Dolphin settings.
FastDiscSpeed = True
[EmuState]
# The Emulation State. 1 is worst, 5 is best, 0 is not set.
-1
View File
@@ -2,7 +2,6 @@
[Core]
# Values set here will override the main Dolphin settings.
FastDiscSpeed = True
[EmuState]
# The Emulation State. 1 is worst, 5 is best, 0 is not set.
File diff suppressed because it is too large Load Diff
+1
View File
@@ -95,6 +95,7 @@ enum DIInterruptType : int
enum class ReplyType : u32
{
NoReply,
Interrupt,
IOS,
DTK
+1 -1
View File
@@ -71,7 +71,7 @@ static Common::Event g_compressAndDumpStateSyncEvent;
static std::thread g_save_thread;
// Don't forget to increase this after doing changes on the savestate system
static const u32 STATE_VERSION = 75; // Last changed in PR 4857
static const u32 STATE_VERSION = 76; // Last changed in PR 4829
// Maps savestate versions to Dolphin versions.
// Versions after 42 don't need to be added to this list,