blob: 86353470c86f81c723017e990457136ea83600eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* status.c: Keeping track of several VDR status settings
*/
#include "status.h"
cLCARSNGStatusMonitor *statusMonitor;
void cLCARSNGStatusMonitor::SetVolume(int volume, bool absolute)
{ // The volume has been set to the given value, either
// absolutely or relative to the current volume.
Volume = absolute ? volume : Volume + volume;
}
|