commit a13557c8b7c04be29b8471300e9930609105fedf parent 65dcc5db07383af79312900574d2a7d2d72e7f7e Author: Michael Savage <mikejsavage@gmail.com> Date: Sun Feb 5 14:13:14 +0200 Max volume in audio.cc Diffstat:
audio.cc | | | 2 | +- |
diff --git a/audio.cc b/audio.cc @@ -46,7 +46,7 @@ int main( int argc, char ** argv ) { // mixer_play( make_sin_wave( sound.sample_rate, 200 ), MIXER_LOOP ); PlayingSoundID song = mixer_play( sound ); - mixer_volume( song, 0.8f ); + mixer_volume( song, 1 ); // snd_output_t *log; // if (snd_output_stdio_attach(&log, stderr, 0) >= 0) {