aboutsummaryrefslogtreecommitdiff
path: root/engines/lab/special.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2015-12-03 11:02:58 +0100
committerWillem Jan Palenstijn2015-12-23 21:33:48 +0100
commitc67a9e867c2f40edcdecbc5077dfc2a6edcb443e (patch)
treec3dc7f47af6341c79c33875f77ce144b63a6af9d /engines/lab/special.cpp
parent646c29d5a34fa85c7dd6915de31c28465e7797a1 (diff)
downloadscummvm-rg350-c67a9e867c2f40edcdecbc5077dfc2a6edcb443e.tar.gz
scummvm-rg350-c67a9e867c2f40edcdecbc5077dfc2a6edcb443e.tar.bz2
scummvm-rg350-c67a9e867c2f40edcdecbc5077dfc2a6edcb443e.zip
LAB: More renames
Diffstat (limited to 'engines/lab/special.cpp')
-rw-r--r--engines/lab/special.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/engines/lab/special.cpp b/engines/lab/special.cpp
index 8e63d36ee5..946c8af9a8 100644
--- a/engines/lab/special.cpp
+++ b/engines/lab/special.cpp
@@ -892,17 +892,17 @@ void LabEngine::processMonitor(char *ntext, TextFont *monitorFont, bool isintera
uint32 Class;
uint16 Qualifier, Code, MouseX, MouseY;
const char *Test = " ", *StartFileName = TextFileName;
- CloseDataPtr StartCPtr = CPtr, TestCPtr, LastCPtr[10];
+ CloseDataPtr startcptr = CPtr, testcptr, lastcptr[10];
uint16 depth = 0;
- LastCPtr[0] = CPtr;
+ lastcptr[0] = CPtr;
while (1) {
if (isinteractive) {
if (CPtr == NULL)
- CPtr = StartCPtr;
+ CPtr = startcptr;
- if (CPtr == StartCPtr)
+ if (CPtr == startcptr)
Test = StartFileName;
else
Test = CPtr->GraphicName;
@@ -955,7 +955,7 @@ void LabEngine::processMonitor(char *ntext, TextFont *monitorFont, bool isintera
if (depth) {
depth--;
- CPtr = LastCPtr[depth];
+ CPtr = lastcptr[depth];
}
} else if (monitorPage > 0) {
monitorPage = 0;
@@ -963,13 +963,13 @@ void LabEngine::processMonitor(char *ntext, TextFont *monitorFont, bool isintera
}
}
} else if (isinteractive) {
- TestCPtr = CPtr;
+ testcptr = CPtr;
MouseY = 64 + (MouseY / MonGadHeight) * 42;
MouseX = 101;
setCurClose(Common::Point(MouseX, MouseY), &CPtr, true);
- if (TestCPtr != CPtr) {
- LastCPtr[depth] = TestCPtr;
+ if (testcptr != CPtr) {
+ lastcptr[depth] = testcptr;
depth++;
}
}