Fix SSI263 assertion.

A BYTE is *always* != -1.

Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
This commit is contained in:
Andrea Odetti 2024-01-04 11:50:25 +00:00
parent 69151a2aff
commit 9b0813b1f1
1 changed files with 1 additions and 1 deletions

View File

@ -900,7 +900,7 @@ void SSI263::LoadSnapshot(YamlLoadHelper& yamlLoadHelper, PHASOR_MODE mode, UINT
//
_ASSERT(m_device != -1);
_ASSERT(m_device != BYTE(-1));
SetCardMode(mode);
// Only need to directly assert IRQ for Phasor mode (for Mockingboard mode it's done via UpdateIFR() in parent)