aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/mpal/memory.cpp
diff options
context:
space:
mode:
authorTorbjörn Andersson2012-05-19 11:05:57 +0200
committerTorbjörn Andersson2012-05-19 11:05:57 +0200
commit827454a87ee73b079a96fbd4bd0df3b43224eb06 (patch)
tree607053106740f5690cc60d604476418bb2c93bd1 /engines/tony/mpal/memory.cpp
parent8457c1c7682e3c0d0c382c01b042158ec506e300 (diff)
downloadscummvm-rg350-827454a87ee73b079a96fbd4bd0df3b43224eb06.tar.gz
scummvm-rg350-827454a87ee73b079a96fbd4bd0df3b43224eb06.tar.bz2
scummvm-rg350-827454a87ee73b079a96fbd4bd0df3b43224eb06.zip
TONY: Change "it's" to "its" in comments where appropriate. (I think.)
Diffstat (limited to 'engines/tony/mpal/memory.cpp')
-rw-r--r--engines/tony/mpal/memory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/tony/mpal/memory.cpp b/engines/tony/mpal/memory.cpp
index 4410e8016c..04cb906431 100644
--- a/engines/tony/mpal/memory.cpp
+++ b/engines/tony/mpal/memory.cpp
@@ -91,7 +91,7 @@ MemoryItem &MemoryManager::allocate(uint32 size, uint flags) {
}
/**
- * Allocates a new memory block and returns it's data pointer
+ * Allocates a new memory block and returns its data pointer
* @returns Data pointer to allocated block
*/
HGLOBAL MemoryManager::alloc(uint32 size, uint flags) {
@@ -123,7 +123,7 @@ MemoryItem &MemoryManager::operator[](HGLOBAL handle) {
}
/**
- * Returns a size of a memory block given it's pointer
+ * Returns a size of a memory block given its pointer
*/
uint32 MemoryManager::getSize(HGLOBAL handle) {
MemoryItem &item = getItem(handle);