From 6376a8f066b606fe7620eb1a816f374eefd32987 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 9 Oct 2003 00:36:15 +0000 Subject: [PATCH] remove trace --- stepmania/src/RageSoundReader_WAV.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/stepmania/src/RageSoundReader_WAV.cpp b/stepmania/src/RageSoundReader_WAV.cpp index b0bc3a5ba7..b7222715f5 100644 --- a/stepmania/src/RageSoundReader_WAV.cpp +++ b/stepmania/src/RageSoundReader_WAV.cpp @@ -227,10 +227,6 @@ int RageSoundReader_WAV::get_length_fmt_normal() const BAIL_IF_MACRO( ret == -1, strerror(errno), -1 ); int offset = ftell( this->rw ); - LOG->Trace("offs %i, st %i, pos %i, bps %i, chan %i, ret %i", - offset, this->fmt.data_starting_offset, - offset - this->fmt.data_starting_offset, BytesPerSample, Channels, - ConvertBytePosToMs( BytesPerSample, Channels, offset - this->fmt.data_starting_offset)); return ConvertBytePosToMs( BytesPerSample, Channels, offset - this->fmt.data_starting_offset); }