Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cdvd: Street Fighter EX3 (NTSC-J) black screen fix #1709

Merged
merged 2 commits into from Jan 6, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 6 additions & 4 deletions pcsx2/CDVD/CDVD.cpp
Expand Up @@ -890,7 +890,9 @@ __fi void cdvdReadInterrupt()

if (--cdvd.nSectors <= 0)
{
cdvd.PwOff |= 1<<Irq_CommandComplete;
// Setting the data ready flag fixes a black screen loading issue in

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

// Street Fighter Ex3 (NTSC-J version).
cdvd.PwOff |= (1 << Irq_DataReady) | (1 << Irq_CommandComplete);
psxHu32(0x1070)|= 0x4;

HW_DMA3_CHCR &= ~0x01000000;
Expand Down Expand Up @@ -1048,9 +1050,9 @@ u8 cdvdRead(u8 key)
CDVD_LOG("cdvdRead07(Break) %x", 0);
return 0;

case 0x08: // STATUS
CDVD_LOG("cdvdRead08(Status) %x", cdvd.Status);
return cdvd.Status;
case 0x08: // INTR_STAT

This comment was marked as spam.

This comment was marked as spam.

CDVD_LOG("cdvdRead08(IntrReason) %x", cdvd.PwOff);
return cdvd.PwOff;

case 0x0A: // STATUS
CDVD_LOG("cdvdRead0A(Status) %x", cdvd.Status);
Expand Down