diff options
Diffstat (limited to 'src/osd/osdepend.c')
-rw-r--r-- | src/osd/osdepend.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/osd/osdepend.c b/src/osd/osdepend.c index effc05a204f..2130eb3b458 100644 --- a/src/osd/osdepend.c +++ b/src/osd/osdepend.c @@ -171,10 +171,10 @@ void osd_interface::set_mastervolume(int attenuation) // // Attenuation is the attenuation in dB (a negative number). // To convert from dB to a linear volume scale do the following: - // volume = MAX_VOLUME; - // while (attenuation++ < 0) - // volume /= 1.122018454; // = (10 ^ (1/20)) = 1dB - // + // volume = MAX_VOLUME; + // while (attenuation++ < 0) + // volume /= 1.122018454; // = (10 ^ (1/20)) = 1dB + // } |