aboutsummaryrefslogtreecommitdiff
path: root/tt.volume.ahk
diff options
context:
space:
mode:
Diffstat (limited to 'tt.volume.ahk')
-rw-r--r--tt.volume.ahk17
1 files changed, 8 insertions, 9 deletions
diff --git a/tt.volume.ahk b/tt.volume.ahk
index e01be7d..5946469 100644
--- a/tt.volume.ahk
+++ b/tt.volume.ahk
@@ -13,15 +13,14 @@ RAlt & F5::SetVolume(GetKeyState("Shift") ? -2 : -1)
SetVolume(n)
{
- SoundGet, w, WAVE
- SoundSet, 15
- w := round(w) + n
- if (w > 100)
- w := 100
- if (w < 0)
- w := 0
- SoundSet, %w%, WAVE
- OSD(w)
+ SoundGet, s
+ s := round(s) + n
+ if (s > 100)
+ s := 100
+ if (s < 0)
+ s := 0
+ SoundSet, %s%
+ OSD(s)
}
/*