diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/pcm_utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pcm_utils.c b/src/pcm_utils.c index a68542f4a..bc9516a8f 100644 --- a/src/pcm_utils.c +++ b/src/pcm_utils.c @@ -93,7 +93,7 @@ void pcm_volume(char *buffer, int bufferSize, const struct audio_format *format, int volume) { - if (volume >= PCM_VOLUME_1) + if (volume == PCM_VOLUME_1) return; if (volume <= 0) { |