aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/kernel/resource.h
diff options
context:
space:
mode:
authorEugene Sandulenko2010-09-02 12:14:04 +0000
committerEugene Sandulenko2010-10-12 23:30:00 +0000
commit086f5961b6575c50bb386750b6e9a3ed1efdd8cd (patch)
tree75c532790d67ccd3b8fdc5c371a3ce3bf0705dca /engines/sword25/kernel/resource.h
parent0cdb2ded85d17150cb108a5d63dd8957c29af2a5 (diff)
downloadscummvm-rg350-086f5961b6575c50bb386750b6e9a3ed1efdd8cd.tar.gz
scummvm-rg350-086f5961b6575c50bb386750b6e9a3ed1efdd8cd.tar.bz2
scummvm-rg350-086f5961b6575c50bb386750b6e9a3ed1efdd8cd.zip
SWORD25: unsigned int -> uint
svn-id: r53309
Diffstat (limited to 'engines/sword25/kernel/resource.h')
-rw-r--r--engines/sword25/kernel/resource.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/sword25/kernel/resource.h b/engines/sword25/kernel/resource.h
index 7d696ec198..a78129666e 100644
--- a/engines/sword25/kernel/resource.h
+++ b/engines/sword25/kernel/resource.h
@@ -91,14 +91,14 @@ public:
/**
* Returns the hash of the filename of a resource
*/
- unsigned int GetFileNameHash() const {
+ uint GetFileNameHash() const {
return _FileNameHash;
}
/**
* Returns a resource's type
*/
- unsigned int GetType() const {
+ uint GetType() const {
return _Type;
}
@@ -107,9 +107,9 @@ protected:
private:
Common::String _FileName; ///< The absolute filename
- unsigned int _FileNameHash; ///< The hash value of the filename
- unsigned int _RefCount; ///< The number of locks
- unsigned int _Type; ///< The type of the resource
+ uint _FileNameHash; ///< The hash value of the filename
+ uint _RefCount; ///< The number of locks
+ uint _Type; ///< The type of the resource
Common::List<Resource *>::iterator _Iterator; ///< Points to the resource position in the LRU list
};