BSNESv115: fix crash when audio output is disabled

(fixes 039d822144)
This commit is contained in:
Morilli 2022-08-17 01:35:02 +02:00
parent 039d822144
commit 7ffa605b28
1 changed files with 1 additions and 0 deletions

View File

@ -81,6 +81,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.BSNES
using (Api.exe.EnterExit())
{
short* rawAudioBuffer = Api.core.snes_get_audiobuffer_and_size(out int size);
if (size == 0) return 0;
if (size > _audioBuffer.Length)
_audioBuffer = new short[size];
Marshal.Copy((IntPtr) rawAudioBuffer, _audioBuffer, 0, size);