From 52fd05751f470da6773839fe152ee3df41437ff5 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 20 May 2005 03:52:48 +0000 Subject: [PATCH] fix ssprintf --- stepmania/src/SongManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/SongManager.cpp b/stepmania/src/SongManager.cpp index 1ee00151ae..5f1f02ba9e 100644 --- a/stepmania/src/SongManager.cpp +++ b/stepmania/src/SongManager.cpp @@ -719,7 +719,7 @@ void SongManager::Invalidate( Song *pStaleSong ) if( pTrail != NULL ) { \ map::iterator it; \ it = mapOldTrailToTrailIDAndCourse.find(pTrail); \ - ASSERT_M( it != mapOldTrailToTrailIDAndCourse.end(), ssprintf("%p", pTrail) ); \ + ASSERT_M( it != mapOldTrailToTrailIDAndCourse.end(), ssprintf("%p", pTrail.Get()) ); \ const TrailIDAndCourse &tidc = it->second; \ const TrailID &id = tidc.first; \ const Course *pCourse = tidc.second; \