CDROM: Delay async interrupts immediately after ACKs

Fixes music playback stopping in Ogre Battle.

Closes #2596.
Closes #575.
This commit is contained in:
Connor McLaughlin
2023-01-09 20:54:31 +10:00
parent dd73811628
commit 9de849aa66
2 changed files with 91 additions and 36 deletions

View File

@ -5,7 +5,7 @@
#include "types.h"
static constexpr u32 SAVE_STATE_MAGIC = 0x43435544;
static constexpr u32 SAVE_STATE_VERSION = 56;
static constexpr u32 SAVE_STATE_VERSION = 57;
static constexpr u32 SAVE_STATE_MINIMUM_VERSION = 42;
static_assert(SAVE_STATE_VERSION >= SAVE_STATE_MINIMUM_VERSION);