lirc: fix logic behind mute buttons

This commit is contained in:
Lennart Poettering 2009-04-13 04:44:27 +02:00
parent 66d21849e6
commit 62db10c952

View file

@ -148,11 +148,11 @@ static void io_callback(pa_mainloop_api *io, pa_io_event *e, int fd, pa_io_event
break; break;
case MUTE: case MUTE:
pa_sink_set_mute(s, 0); pa_sink_set_mute(s, TRUE);
break; break;
case RESET: case RESET:
pa_sink_set_mute(s, 1); pa_sink_set_mute(s, FALSE);
break; break;
case MUTE_TOGGLE: case MUTE_TOGGLE: