Skip to content

Commit

Permalink
VT8233/35/37 bugifx trial.
Browse files Browse the repository at this point in the history
  • Loading branch information
crazii committed Jan 18, 2024
1 parent 0f0dbf0 commit 861d436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mpxplay/au_cards/sc_via82.c
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ static long VIA82XX_getbufpos(struct mpxplay_audioout_info_s *aui)
count &= 0xffffff;

#ifdef SBEMU
if(card->pci_dev->device_id!=PCI_DEVICE_ID_VT82C686 || (count && (count<=PCMBUFFERPAGESIZE))) { //VT8233/8235/8237 's count can be 0 on interrupt
if((card->pci_dev->device_id!=PCI_DEVICE_ID_VT82C686 || count) && (count<=PCMBUFFERPAGESIZE)) { //VT8233/8235/8237 's count can be 0 on interrupt
#else
if(count && (count<=PCMBUFFERPAGESIZE)) {
#endif
Expand Down

0 comments on commit 861d436

Please sign in to comment.