Skip to content

Commit

Permalink
Fix typo in ioport.c
Browse files Browse the repository at this point in the history
  • Loading branch information
jiyunomegami committed Feb 17, 2024
1 parent 8060a78 commit 6d7b382
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mpxplay/au_cards/ioport.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ uint8_t ioport_mpu401_read (struct mpxplay_audioout_info_s *aui, unsigned int id
void ioport_mpu401_write (struct mpxplay_audioout_info_s *aui, unsigned int idx, uint8_t data)
{
#if 0 // shouldn't DOS programs be doing this themselves if it was really necessary?
if (idx == 0 && aui->) {
if (idx == 0 && aui->mpu401_softread) {
int timeout = 10000; // 100ms
do {
uint8_t st = hw_mpu_inb(1);
Expand Down

0 comments on commit 6d7b382

Please sign in to comment.