From 4a409d387aa96408e50ada18f8cb81c47f1c3852 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 12 Aug 2007 22:23:17 +0000 Subject: [PATCH] style --- stepmania/src/TrailUtil.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stepmania/src/TrailUtil.cpp b/stepmania/src/TrailUtil.cpp index 2b1557316d..e2ed1656c1 100644 --- a/stepmania/src/TrailUtil.cpp +++ b/stepmania/src/TrailUtil.cpp @@ -27,11 +27,11 @@ Trail *TrailID::ToTrail( const Course *p, bool bAllowNull ) const if( st == StepsType_Invalid || cd == Difficulty_Invalid ) return NULL; - Trail *ret = p->GetTrail( st, cd ); - if( !bAllowNull && ret == NULL ) + Trail *pRet = p->GetTrail( st, cd ); + if( !bAllowNull && pRet == NULL ) RageException::Throw( "%i, %i, \"%s\"", st, cd, p->GetDisplayFullTitle().c_str() ); - return ret; + return pRet; } XNode* TrailID::CreateNode() const