aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/font.cpp
diff options
context:
space:
mode:
authorStrangerke2012-06-06 01:37:06 +0200
committerStrangerke2012-06-06 01:37:06 +0200
commit334dc91e279d01b264ae7454f39faa557a250428 (patch)
treee50cd39ca07f8c71d985c1c879ef7578dfc0656f /engines/tony/font.cpp
parent380c86fd4073415ee485c244383cc15d3b45b703 (diff)
downloadscummvm-rg350-334dc91e279d01b264ae7454f39faa557a250428.tar.gz
scummvm-rg350-334dc91e279d01b264ae7454f39faa557a250428.tar.bz2
scummvm-rg350-334dc91e279d01b264ae7454f39faa557a250428.zip
TONY: Rename variables and functions in game.h
Diffstat (limited to 'engines/tony/font.cpp')
-rw-r--r--engines/tony/font.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/tony/font.cpp b/engines/tony/font.cpp
index 47cdcb56b5..e0eca3b4e2 100644
--- a/engines/tony/font.cpp
+++ b/engines/tony/font.cpp
@@ -2261,11 +2261,11 @@ void RMTextItemName::DoFrame(CORO_PARAM, RMGfxTargetBuffer &bigBuf, RMLocation &
// Handle the change If the selected item is different from the previous one
if (_ctx->lastItem != m_item) {
if (m_item == NULL)
- ptr.SetSpecialPointer(RMPointer::PTR_NONE);
+ ptr.setSpecialPointer(RMPointer::PTR_NONE);
else {
_ctx->hThread = mpalQueryDoAction(20, m_item->MpalCode(), 0);
if (_ctx->hThread == CORO_INVALID_PID_VALUE)
- ptr.SetSpecialPointer(RMPointer::PTR_NONE);
+ ptr.setSpecialPointer(RMPointer::PTR_NONE);
else
CORO_INVOKE_2(CoroScheduler.waitForSingleObject, _ctx->hThread, CORO_INFINITE);
}