Skip to content

Commit

Permalink
fix dos driver was left out of new player interface
Browse files Browse the repository at this point in the history
  • Loading branch information
sezero committed Apr 4, 2024
1 parent 20a8ba2 commit 4362696
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions include/wildplay.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ extern audiodrv_info audiodrv_oss;
extern audiodrv_info audiodrv_ahi;
extern audiodrv_info audiodrv_winmm;
extern audiodrv_info audiodrv_dart;
extern audiodrv_info audiodrv_dossb;
extern audiodrv_info audiodrv_openal;

extern void msleep(uint32_t msec);
Expand Down
3 changes: 3 additions & 0 deletions src/player/wildmidi.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ static const audiodrv_info *available_outputs[] = {
#ifdef AUDIODRV_OS2DART
&audiodrv_dart,
#endif
#ifdef AUDIODRV_DOSSB
&audiodrv_dossb,
#endif
#ifdef AUDIODRV_OPENAL
&audiodrv_openal,
#endif
Expand Down

0 comments on commit 4362696

Please sign in to comment.