diff options
author | Eric Wong <normalperson@yhbt.net> | 2006-08-01 10:07:07 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2006-08-01 10:07:07 +0000 |
commit | c22a53d373f840569c56a1b3f6a774fc94b1e1e1 (patch) | |
tree | 17619e6e941790c0fb4871e451308496e57f28c7 /src/playerData.h | |
parent | 89073cfbba6126ce28221ad54e75a69b05b21fd6 (diff) | |
download | mpd-c22a53d373f840569c56a1b3f6a774fc94b1e1e1.tar.gz mpd-c22a53d373f840569c56a1b3f6a774fc94b1e1e1.tar.xz mpd-c22a53d373f840569c56a1b3f6a774fc94b1e1e1.zip |
audio: remove AUDIO_MAX_DEVICES limit
Some people have more than 8 devices (the old limit). It's
pretty easy to support as many as our hardware and OS allows
so we might as well.
git-svn-id: https://svn.musicpd.org/mpd/trunk@4513 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/playerData.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/playerData.h b/src/playerData.h index ac64f3b85..2e1e445be 100644 --- a/src/playerData.h +++ b/src/playerData.h @@ -37,7 +37,7 @@ typedef struct _PlayerData { OutputBuffer buffer; PlayerControl playerControl; DecoderControl decoderControl; - mpd_sint8 audioDeviceEnabled[AUDIO_MAX_DEVICES]; + mpd_sint8 *audioDeviceEnabled; int pid; } PlayerData; |