summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--volume.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/volume.cpp b/volume.cpp
index 21f625b..c6c0e03 100644
--- a/volume.cpp
+++ b/volume.cpp
@@ -57,7 +57,7 @@ bool getmuted(void){
void displayslider(bool m,int vol){
cout<<"\x1B[2K\r0 |"
<<string(vol/5,'#')<<string((100-vol)/5,'-')
- <<"| 100 ("<<vol<<"%)";
+ <<"| 100 ("<<vol<<"%)";
if(m)cout<<" \x1B[1mMUTED (m)\x1B[0m";
cout.flush();
}