Merge pull request #5582 from cam900/patch-109

ym2151.cpp : Fix reset behavior
This commit is contained in:
ajrhacker 2019-09-02 18:44:39 -04:00 committed by GitHub
commit 555f55b139
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1802,6 +1802,7 @@ void ym2151_device::sound_stream_update(sound_stream &stream, stream_sample_t **
if (m_reset_active)
{
std::fill(&outputs[0][0], &outputs[0][samples], 0);
std::fill(&outputs[1][0], &outputs[1][samples], 0);
return;
}