aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/mpal/mpalutils.h
diff options
context:
space:
mode:
authorStrangerke2012-06-07 08:42:35 +0200
committerStrangerke2012-06-07 08:42:35 +0200
commitf12ab3e521b01ed2b40e7d517753dd14bc6e6f0f (patch)
tree729bc315319f8143e88c136bee1290e81f40a5d6 /engines/tony/mpal/mpalutils.h
parent53bd99ce870ac5bd7f65d1e45641e13070f652d0 (diff)
downloadscummvm-rg350-f12ab3e521b01ed2b40e7d517753dd14bc6e6f0f.tar.gz
scummvm-rg350-f12ab3e521b01ed2b40e7d517753dd14bc6e6f0f.tar.bz2
scummvm-rg350-f12ab3e521b01ed2b40e7d517753dd14bc6e6f0f.zip
TONY: Rename variables and functions in utils.h
Diffstat (limited to 'engines/tony/mpal/mpalutils.h')
-rw-r--r--engines/tony/mpal/mpalutils.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/tony/mpal/mpalutils.h b/engines/tony/mpal/mpalutils.h
index a9f8403fcd..a428a40a64 100644
--- a/engines/tony/mpal/mpalutils.h
+++ b/engines/tony/mpal/mpalutils.h
@@ -33,17 +33,17 @@ namespace MPAL {
class RMRes {
protected:
- HGLOBAL m_h;
- byte *m_buf;
+ HGLOBAL _h;
+ byte *_buf;
public:
RMRes(uint32 resID);
virtual ~RMRes();
// Attributes
- unsigned int Size();
- const byte *DataPointer();
- bool IsValid() { return m_h != NULL; }
+ unsigned int size();
+ const byte *dataPointer();
+ bool isValid() { return _h != NULL; }
// Casting for access to data
operator const byte*();
@@ -57,8 +57,8 @@ public:
const byte *DataPointer();
operator const byte*();
- int Width();
- int Height();
+ int width();
+ int height();
};
} // end of namespace MPAL