aboutsummaryrefslogtreecommitdiff
path: root/engines/tony
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
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')
-rw-r--r--engines/tony/font.cpp2
-rw-r--r--engines/tony/gfxcore.h2
-rw-r--r--engines/tony/mpal/loadmpc.cpp8
-rw-r--r--engines/tony/mpal/memory.cpp4
-rw-r--r--engines/tony/mpal/mpal.cpp2
5 files changed, 9 insertions, 9 deletions
diff --git a/engines/tony/font.cpp b/engines/tony/font.cpp
index 8fc011bb35..db51dc3b79 100644
--- a/engines/tony/font.cpp
+++ b/engines/tony/font.cpp
@@ -2277,7 +2277,7 @@ void RMTextItemName::DoFrame(CORO_PARAM, RMGfxTargetBuffer &bigBuf, RMLocation &
itemName = "";
- // If there an item, get it's name
+ // If there an item, get its name
if (m_item != NULL)
m_item->GetName(itemName);
diff --git a/engines/tony/gfxcore.h b/engines/tony/gfxcore.h
index 3fa29e20f6..1af13d9a66 100644
--- a/engines/tony/gfxcore.h
+++ b/engines/tony/gfxcore.h
@@ -536,7 +536,7 @@ public:
/**
- * Destination buffer which manages it's own internal list of tasks
+ * Destination buffer which manages its own internal list of tasks
*/
class RMGfxTargetBuffer : public virtual RMGfxBuffer {
private:
diff --git a/engines/tony/mpal/loadmpc.cpp b/engines/tony/mpal/loadmpc.cpp
index 6a1213bc19..6329a2090a 100644
--- a/engines/tony/mpal/loadmpc.cpp
+++ b/engines/tony/mpal/loadmpc.cpp
@@ -77,7 +77,7 @@ static bool CompareCommands(struct command *cmd1, struct command *cmd2) {
/**
- * Parses a script from the MPC file, and inserts it's data into a structure
+ * Parses a script from the MPC file, and inserts its data into a structure
*
* @param lpBuf Buffer containing the compiled script.
* @param lpmsScript Pointer to a structure that will be filled with the
@@ -138,7 +138,7 @@ static const byte *ParseScript(const byte *lpBuf, LPMPALSCRIPT lpmsScript) {
/**
- * Parses a dialog from the MPC file, and inserts it's data into a structure
+ * Parses a dialog from the MPC file, and inserts its data into a structure
*
* @param lpBuf Buffer containing the compiled dialog.
* @param lpmdDialog Pointer to a structure that will be filled with the
@@ -303,7 +303,7 @@ static const byte *ParseDialog(const byte *lpBuf, LPMPALDIALOG lpmdDialog) {
/**
- * Parses an item from the MPC file, and inserts it's data into a structure
+ * Parses an item from the MPC file, and inserts its data into a structure
*
* @param lpBuf Buffer containing the compiled dialog.
* @param lpmiItem Pointer to a structure that will be filled with the
@@ -425,7 +425,7 @@ static const byte *ParseItem(const byte *lpBuf, LPMPALITEM lpmiItem) {
/**
- * Parses a location from the MPC file, and inserts it's data into a structure
+ * Parses a location from the MPC file, and inserts its data into a structure
*
* @param lpBuf Buffer containing the compiled location.
* @param lpmiLocation Pointer to a structure that will be filled with the
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);
diff --git a/engines/tony/mpal/mpal.cpp b/engines/tony/mpal/mpal.cpp
index 6ec92e74c1..aea441138b 100644
--- a/engines/tony/mpal/mpal.cpp
+++ b/engines/tony/mpal/mpal.cpp
@@ -1312,7 +1312,7 @@ void DoChoice(CORO_PARAM, uint32 nChoice) {
* @param dwParam Any parameter for the action.
* @returns Id of the process that was launched to perform the action, or
* CORO_INVALID_PID_VALUE if the action was not defined, or the item was inactive.
- * @remarks You can get the index of an item from it's number by using
+ * @remarks You can get the index of an item from its number by using
* the itemGetOrderFromNum() function. The items list must first be locked
* by calling LockItem().
*/