Change sound chip ID to 0xac

This commit is contained in:
Natt Akuma 2022-03-05 03:11:11 +07:00
parent 9abf872ff3
commit d209a45b92
1 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ DivSystem DivEngine::systemFromFile(unsigned char val) {
return DIV_SYSTEM_LYNX;
case 0xa9:
return DIV_SYSTEM_SEGAPCM_COMPAT;
case 0xaa:
case 0xac:
return DIV_SYSTEM_VERA;
case 0xde:
return DIV_SYSTEM_YM2610B_EXT;
@ -261,7 +261,7 @@ unsigned char DivEngine::systemToFile(DivSystem val) {
case DIV_SYSTEM_SEGAPCM_COMPAT:
return 0xa9;
case DIV_SYSTEM_VERA:
return 0xaa;
return 0xac;
case DIV_SYSTEM_YM2610B_EXT:
return 0xde;
case DIV_SYSTEM_QSOUND: