gitadora: Added support for GITADORA Delta (#476)

## Link to GitHub Issue, if one exists
None

## Description of change
- Added bi2x_hook
- Added J32D (drum) and J33I (guitar) emulations
- AMI2000 card reader (this game uses this instead of ICCA)

## Testing
Played through a 15-minute session on Drummania.
Guitar mode works with keyboard input.
This commit is contained in:
zxcwdta
2025-12-29 11:17:06 +11:00
committed by GitHub
parent d4f1768bbd
commit 07a0df5fdc
19 changed files with 1247 additions and 7 deletions
+6
View File
@@ -399,6 +399,12 @@ static BOOL WINAPI ClearCommError_hook(HANDLE hFile, LPDWORD lpErrors, LPCOMSTAT
lpStat->cbInQue = custom_handle->bytes_available();
}
// gitadora arena model needs this, or else
// the game will keep spamming 0xAA
if (avs::game::is_model("M32") && (avs::game::SPEC[0] == 'C' || avs::game::SPEC[0] == 'D') && lpErrors) {
*lpErrors = 0;
}
return TRUE;
}