From 31b5eccedd31b6af7b43753daa6a4480fb9d3321 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 13 Apr 2004 01:48:51 +0000 Subject: [PATCH] better output --- stepmania/src/RageSoundPosMap.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/stepmania/src/RageSoundPosMap.cpp b/stepmania/src/RageSoundPosMap.cpp index dd91e3f842..f51231e294 100644 --- a/stepmania/src/RageSoundPosMap.cpp +++ b/stepmania/src/RageSoundPosMap.cpp @@ -131,8 +131,9 @@ int64_t pos_map_queue::Search( int64_t frame, bool *approximate ) const * 3. Underflow; we'll be given a larger frame number than we know about. */ /* XXX: %lli normally, %I64i in Windows */ - LOG->Trace( "Approximate sound time: driver frame %lli, m_Queue frame %lli (dist %lli), closest position is %lli", - frame, m_Queue[closest_block].frameno, closest_position_dist, closest_position ); + LOG->Trace( "Approximate sound time: driver frame %lli, m_Queue frame %lli..%lli (dist %lli), closest position is %lli", + frame, m_Queue[closest_block].frameno, m_Queue[closest_block].frameno+m_Queue[closest_block].frames, + closest_position_dist, closest_position ); if( approximate ) *approximate = true;