13
0

*fixed bug: channel mask not set in MidiRingBuffer

git-svn-id: svn://localhost/ardour2/branches/3.0@3274 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Hans Baier 2008-04-21 10:21:10 +00:00
parent f31abc5eaf
commit 9c4cc26d77

View File

@ -243,7 +243,7 @@ public:
* bit 1 = channel 1 etc. the read and write methods will only allow
* events to pass, whose channel bit is 1.
*/
void set_channel_mask(uint16_t channel_mask) { g_atomic_int_set(&channel_mask, channel_mask); }
void set_channel_mask(uint16_t channel_mask) { g_atomic_int_set(&_channel_mask, channel_mask); }
uint16_t get_channel_mask() { return g_atomic_int_get(&_channel_mask); }
/**