diff options
| author | skidau <skidau@gmail.com> | 2015-01-19 23:36:19 +1100 |
|---|---|---|
| committer | skidau <skidau@gmail.com> | 2015-01-24 12:13:23 +1100 |
| commit | 18cee2dcc72bf3b049b4d80498408f6fe4edd5a7 (patch) | |
| tree | 5943a382136823789de48d34ccb5e6cdf816c20b /Source | |
| parent | 0b1d8fae1b4d1a041c03e59fd09fc5e212c87af7 (diff) | |
Added second parameter for the eject disc via StopMotor DI command. The AGP disc expects the disc to still be readable after sending an eject command.
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/Core/HW/DVDInterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/HW/DVDInterface.cpp b/Source/Core/Core/HW/DVDInterface.cpp index 860c0ce4d4..3a25ce97b5 100644 --- a/Source/Core/Core/HW/DVDInterface.cpp +++ b/Source/Core/Core/HW/DVDInterface.cpp @@ -1136,7 +1136,7 @@ DVDCommandResult ExecuteCommand(u32 command_0, u32 command_1, u32 command_2, INFO_LOG(DVDINTERFACE, "DVDLowStopMotor %s %s", command_1 ? "eject" : "", command_2 ? "kill!" : ""); - if (command_1) + if (command_1 && !command_2) EjectDiscCallback(0, 0); break; |
