m_sSpritePath is obsolete and never set

This commit is contained in:
Glenn Maynard
2006-07-27 23:20:12 +00:00
parent 34f43ccd4a
commit e340b0adfd
2 changed files with 3 additions and 5 deletions
+3 -4
View File
@@ -44,7 +44,6 @@ Sprite::Sprite( const Sprite &cpy ):
Actor( cpy ) Actor( cpy )
{ {
#define CPY(a) a = cpy.a #define CPY(a) a = cpy.a
CPY( m_sSpritePath );
CPY( m_bDrawIfTextureNull ); CPY( m_bDrawIfTextureNull );
CPY( m_States ); CPY( m_States );
CPY( m_iCurState ); CPY( m_iCurState );
@@ -130,8 +129,8 @@ retry:
} }
if( sPath == sDir ) if( sPath == sDir )
{ {
RString sMessage = ssprintf( "'%s' has a texture '%s' that collapses to './'.", RString sMessage = ssprintf( "A file in '%s' has a texture '%s' that collapses to './'.",
m_sSpritePath.c_str(), sTextureFile.c_str() ); sDir.c_str(), sTextureFile.c_str() );
switch( Dialog::AbortRetryIgnore(sMessage) ) switch( Dialog::AbortRetryIgnore(sMessage) )
{ {
case Dialog::abort: case Dialog::abort:
@@ -167,7 +166,7 @@ retry:
break; break;
if( newState.iFrameIndex >= m_pTexture->GetNumFrames() ) if( newState.iFrameIndex >= m_pTexture->GetNumFrames() )
RageException::Throw( "In '%s', %s is %d, but the texture %s only has %d frames.", RageException::Throw( "In '%s', %s is %d, but the texture %s only has %d frames.",
m_sSpritePath.c_str(), sFrameKey.c_str(), newState.iFrameIndex, sPath.c_str(), m_pTexture->GetNumFrames() ); sDir.c_str(), sFrameKey.c_str(), newState.iFrameIndex, sPath.c_str(), m_pTexture->GetNumFrames() );
if( !pNode->GetAttrValue(sDelayKey, newState.fDelay) ) if( !pNode->GetAttrValue(sDelayKey, newState.fDelay) )
break; break;
-1
View File
@@ -77,7 +77,6 @@ protected:
void DrawTexture( const TweenState *state ); void DrawTexture( const TweenState *state );
RString m_sSpritePath;
RageTexture* m_pTexture; RageTexture* m_pTexture;
bool m_bDrawIfTextureNull; bool m_bDrawIfTextureNull;