mirror of
https://github.com/xenia-project/xenia.git
synced 2026-04-20 22:13:40 +00:00
Fix assert.
This commit is contained in:
parent
6e76c169d6
commit
264fc7cc91
1 changed files with 3 additions and 1 deletions
|
|
@ -75,7 +75,9 @@ SHIM_CALL XAudioGetVoiceCategoryVolumeChangeMask_shim(
|
|||
"XAudioGetVoiceCategoryVolumeChangeMask(%.8X, %.8X)",
|
||||
driver_ptr, out_ptr);
|
||||
|
||||
XEASSERT(driver_ptr == 0xAADD1100);
|
||||
XEASSERT((driver_ptr & 0xFFFF0000) == 0x41550000);
|
||||
|
||||
auto audio_system = state->emulator()->audio_system();
|
||||
|
||||
// Checking these bits to see if any voice volume changed.
|
||||
// I think.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue