From 1c46c7ac565118f11788f3f4fddd26285d27aad9 Mon Sep 17 00:00:00 2001 From: Brandon Wright Date: Tue, 22 May 2018 18:59:15 -0500 Subject: [PATCH] Return 0x80 instead of 0xff when simulating DSP1. --- dsp1.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsp1.cpp b/dsp1.cpp index 972523da..eb85dab3 100644 --- a/dsp1.cpp +++ b/dsp1.cpp @@ -1900,7 +1900,7 @@ uint8 DSP1GetByte (uint16 address) DSP1.waiting4command = TRUE; } else - t = 0xff; + t = 0x80; } else t = 0x80;