aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/gfx/animationresource.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sword25/gfx/animationresource.h')
-rw-r--r--engines/sword25/gfx/animationresource.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sword25/gfx/animationresource.h b/engines/sword25/gfx/animationresource.h
index ca0fd9ca23..503f502e79 100644
--- a/engines/sword25/gfx/animationresource.h
+++ b/engines/sword25/gfx/animationresource.h
@@ -63,11 +63,11 @@ public:
AnimationResource(const Common::String &filename);
virtual ~AnimationResource();
- virtual const Frame &GetFrame(unsigned int Index) const {
+ virtual const Frame &GetFrame(uint Index) const {
BS_ASSERT(Index < m_Frames.size());
return m_Frames[Index];
}
- virtual unsigned int GetFrameCount() const {
+ virtual uint GetFrameCount() const {
return m_Frames.size();
}
virtual void Unlock() {