aboutsummaryrefslogtreecommitdiffstats
path: root/src/playerData.h
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2006-08-01 10:07:12 +0000
committerEric Wong <normalperson@yhbt.net>2006-08-01 10:07:12 +0000
commitb0965c317babb7d25b3d42241788661b94c59fa2 (patch)
treec0b156c2dd69672a1bbd237d201dd74ccff4bc52 /src/playerData.h
parentc22a53d373f840569c56a1b3f6a774fc94b1e1e1 (diff)
downloadmpd-b0965c317babb7d25b3d42241788661b94c59fa2.tar.gz
mpd-b0965c317babb7d25b3d42241788661b94c59fa2.tar.xz
mpd-b0965c317babb7d25b3d42241788661b94c59fa2.zip
audio: get rid of the myAudioDevicesEnabled array
It just made things more confusing. We'll just store the states in playerData_pd->audioDevicesStates and be done with it (it's a unsigned byte now). git-svn-id: https://svn.musicpd.org/mpd/trunk@4514 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r--src/playerData.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/playerData.h b/src/playerData.h
index 2e1e445be..777232bfa 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;
+ mpd_uint8 *audioDeviceStates;
int pid;
} PlayerData;