From 7a1f903c9514b4cc8bfd4009846ad027c6808d91 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 21 Feb 2003 22:06:25 +0000 Subject: [PATCH] give a little more info --- stepmania/src/RageSound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageSound.cpp b/stepmania/src/RageSound.cpp index d86cb3e583..44181ea4f3 100644 --- a/stepmania/src/RageSound.cpp +++ b/stepmania/src/RageSound.cpp @@ -687,7 +687,7 @@ float RageSound::GetPositionSeconds() const * SoundStopped has been called. * 3. Underflow; we'll be given a larger sample number than we know about. */ - LOG->Trace("Approximate sound time: sample %i, closest %i", cur_sample, closest_position); + LOG->Trace("Approximate sound time: sample %i, dist %i, closest %i", cur_sample, closest_position_dist, closest_position); return GetPlaybackRate() * closest_position / float(samplerate); }