Turn off 3d sound CD emulation since only stereo output at the moment

This commit is contained in:
Seth Polsley 2019-11-10 18:58:35 -06:00
parent 447c7b365d
commit 28cd764a31
1 changed files with 2 additions and 2 deletions

View File

@ -569,7 +569,7 @@ int16 CDROMControl(uint32 pb, uint32 dce)
WriteMacInt32(pb + csParam + 4, 1); // true/false = sync/async
break;
case FOURCC('c','d','3','d'):
WriteMacInt32(pb + csParam + 4, 1);
WriteMacInt32(pb + csParam + 4, 0);
break;
}
return noErr;
@ -1023,7 +1023,7 @@ int16 CDROMStatus(uint32 pb, uint32 dce)
WriteMacInt32(pb + csParam + 4, 0); // Drive not available for VM
break;
case FOURCC('c', 'd', '3', 'd'):
WriteMacInt16(pb + csParam + 4, 1);
WriteMacInt16(pb + csParam + 4, 0);
break;
default:
return statusErr;