Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
path: root/src/audio
diff options
context:
space:
mode:
Diffstat (limited to 'src/audio')
-rw-r--r--src/audio/audio.cc2
-rw-r--r--src/audio/wav.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/audio/audio.cc b/src/audio/audio.cc
index 3be1aa5..3ad640d 100644
--- a/src/audio/audio.cc
+++ b/src/audio/audio.cc
@@ -39,7 +39,7 @@ void init()
Sources::init();
- con_debug << " audio device ^B" << alcGetString(audio_device, ALC_DEFAULT_DEVICE_SPECIFIER) << std::endl;
+ //con_debug << " audio device ^B" << alcGetString(audio_device, ALC_DEFAULT_DEVICE_SPECIFIER) << std::endl;
// the "no sound" sound
load("ui/nosnd");
diff --git a/src/audio/wav.cc b/src/audio/wav.cc
index 5d118c6..178f199 100644
--- a/src/audio/wav.cc
+++ b/src/audio/wav.cc
@@ -109,7 +109,7 @@ PCM *Wav::load(std::string const & name)
con_warn << "Error reading " << filename << ": file truncated!" << std::endl;
}
- con_print << " " << filename << " " << pcm->samplerate()<< "Hz " << pcm->bitspersample() << "bit " <<
+ con_debug << " " << filename << " " << pcm->samplerate()<< "Hz " << pcm->bitspersample() << "bit " <<
pcm->channels() << " chan " << pcm->size() << " bytes" << std::endl;
filesystem::close(wav_file);