diff options
Diffstat (limited to 'src/player.h')
-rw-r--r-- | src/player.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/player.h b/src/player.h index 6d0cb15..0f5ca51 100644 --- a/src/player.h +++ b/src/player.h @@ -89,6 +89,8 @@ public: void thread_main(); + void setMute(bool mute); + private: void initSDL(); @@ -108,6 +110,10 @@ private: volatile bool showtext; volatile bool recording; bool recording_prev; + + volatile bool muted; + bool muted_prev; + volatile bool cprchanged; char cpr[256]; |