Fix assert.
This commit is contained in:
parent
6e76c169d6
commit
264fc7cc91
|
@ -75,7 +75,9 @@ SHIM_CALL XAudioGetVoiceCategoryVolumeChangeMask_shim(
|
||||||
"XAudioGetVoiceCategoryVolumeChangeMask(%.8X, %.8X)",
|
"XAudioGetVoiceCategoryVolumeChangeMask(%.8X, %.8X)",
|
||||||
driver_ptr, out_ptr);
|
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.
|
// Checking these bits to see if any voice volume changed.
|
||||||
// I think.
|
// I think.
|
||||||
|
|
Loading…
Reference in New Issue