mirror of
https://github.com/mauiaaron/apple2.git
synced 2025-08-06 07:25:14 +00:00
Bugfix : avoid massively overflowing heap memory
This commit is contained in:
@@ -1699,7 +1699,7 @@ void MB_Initialize()
|
||||
{
|
||||
#ifdef APPLE2IX
|
||||
assert(pthread_self() == cpu_thread_id);
|
||||
memset(SSI263Voice, 0x0, sizeof(AudioBuffer_s)*MAX_VOICES);
|
||||
memset(SSI263Voice, 0x0, sizeof(AudioBuffer_s *) * MAX_VOICES);
|
||||
#endif
|
||||
if (g_bDisableDirectSoundMockingboard)
|
||||
{
|
||||
|
Reference in New Issue
Block a user