board/io4.c: add system status fix for Ongeki

remotes/1722699834674540220/tmp_refs/heads/master^2
Matt Bilker 2020-05-18 23:01:29 +00:00
parent 776cf50bd0
commit e5b0603722
No known key found for this signature in database
GPG Key ID: 69ADF8AEB6C8B5D1
1 changed files with 6 additions and 0 deletions

View File

@ -193,11 +193,17 @@ static HRESULT io4_handle_write(struct irp *irp)
case IO4_CMD_SET_COMM_TIMEOUT:
dprintf("USB I/O: Set comm timeout\n");
// Ongeki Summer expects the system status to be 0x30 at this point
io4_system_status = 0x30;
return S_OK;
case IO4_CMD_SET_SAMPLING_COUNT:
dprintf("USB I/O: Set sampling count\n");
// Ongeki Summer expects the system status to be 0x30 at this point
io4_system_status = 0x30;
return S_OK;
case IO4_CMD_CLEAR_BOARD_STATUS: