diff --git a/stepmania/src/RageSound.cpp b/stepmania/src/RageSound.cpp index 74ac51747f..8d92697ea7 100644 --- a/stepmania/src/RageSound.cpp +++ b/stepmania/src/RageSound.cpp @@ -663,6 +663,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); return GetPlaybackRate() * closest_position / float(samplerate); }