aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/gfx/animationresource.h
diff options
context:
space:
mode:
authorEugene Sandulenko2010-08-06 10:59:35 +0000
committerEugene Sandulenko2010-10-12 22:29:37 +0000
commit6dcf9f0ee557e692df3c70a263ca35068ff45380 (patch)
treead705b0174fda87d448900178c688c302e8625a3 /engines/sword25/gfx/animationresource.h
parentc1b5e5acb88201910b07d20819a677ee09e64df4 (diff)
downloadscummvm-rg350-6dcf9f0ee557e692df3c70a263ca35068ff45380.tar.gz
scummvm-rg350-6dcf9f0ee557e692df3c70a263ca35068ff45380.tar.bz2
scummvm-rg350-6dcf9f0ee557e692df3c70a263ca35068ff45380.zip
SWORD25: std::string -> Common::String in gfx/
svn-id: r53218
Diffstat (limited to 'engines/sword25/gfx/animationresource.h')
-rw-r--r--engines/sword25/gfx/animationresource.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sword25/gfx/animationresource.h b/engines/sword25/gfx/animationresource.h
index 3d6e3e49f3..f37931b9d9 100644
--- a/engines/sword25/gfx/animationresource.h
+++ b/engines/sword25/gfx/animationresource.h
@@ -65,7 +65,7 @@ class TiXmlElement;
class BS_AnimationResource : public BS_Resource, public BS_AnimationDescription
{
public:
- BS_AnimationResource(const std::string & FileName);
+ BS_AnimationResource(const Common::String & FileName);
virtual ~BS_AnimationResource();
virtual const Frame & GetFrame(unsigned int Index) const { BS_ASSERT(Index < m_Frames.size()); return m_Frames[Index]; }