aboutsummaryrefslogtreecommitdiff
path: root/engines/agos/verb.cpp
diff options
context:
space:
mode:
authorTravis Howell2009-02-07 01:11:51 +0000
committerTravis Howell2009-02-07 01:11:51 +0000
commitb2332744e4ccf9d0e19a7b1c46a4a66f46a453e4 (patch)
tree3bd00d744d829bc4dca5cdc491202ce6dd4079fa /engines/agos/verb.cpp
parent341873c9d3c1f4742c6bb2ccf9a4435c09930c7e (diff)
downloadscummvm-rg350-b2332744e4ccf9d0e19a7b1c46a4a66f46a453e4.tar.gz
scummvm-rg350-b2332744e4ccf9d0e19a7b1c46a4a66f46a453e4.tar.bz2
scummvm-rg350-b2332744e4ccf9d0e19a7b1c46a4a66f46a453e4.zip
Cleanup.
svn-id: r36228
Diffstat (limited to 'engines/agos/verb.cpp')
-rw-r--r--engines/agos/verb.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/engines/agos/verb.cpp b/engines/agos/verb.cpp
index 41e7fee5e1..1dfdfb9359 100644
--- a/engines/agos/verb.cpp
+++ b/engines/agos/verb.cpp
@@ -319,7 +319,7 @@ void AGOSEngine::showActionString(const byte *string) {
const uint len = (getGameType() == GType_WW) ? 29 : 53;
window = _windowArray[1];
- if (window == NULL || window->text_color == 0)
+ if (window == NULL || window->textColor == 0)
return;
// Arisme : hack for long strings in the French version
@@ -407,7 +407,7 @@ void AGOSEngine::resetNameWindow() {
return;
window = _windowArray[1];
- if (window != NULL && window->text_color != 0)
+ if (window != NULL && window->textColor != 0)
clearWindow(window);
_lastNameOn = NULL;
@@ -496,7 +496,7 @@ bool AGOSEngine::isBoxDead(uint hitarea) {
return (ha->flags & kBFBoxDead) == 0;
}
-void AGOSEngine::defineBox(int id, int x, int y, int width, int height, int flags, int verb, Item *item_ptr) {
+void AGOSEngine::defineBox(int id, int x, int y, int width, int height, int flags, int verb, Item *itemPtr) {
HitArea *ha;
undefineBox(id);
@@ -508,7 +508,7 @@ void AGOSEngine::defineBox(int id, int x, int y, int width, int height, int flag
ha->flags = flags | kBFBoxInUse;
ha->id = ha->priority = id;
ha->verb = verb;
- ha->item_ptr = item_ptr;
+ ha->itemPtr = itemPtr;
if (getGameType() == GType_FF && (ha->flags & kBFHyperBox)) {
ha->data = _hyperLink;
@@ -770,7 +770,7 @@ void AGOSEngine::boxController(uint x, uint y, uint mode) {
if ((getGameType() == GType_WW) && (_mouseCursor == 0 || _mouseCursor >= 4)) {
uint verb = best_ha->verb & 0x3FFF;
- if (verb >= 239 && verb <= 242) {
+ if (verb >= 239 && verb <= 242) {
uint cursor = verb - 235;
if (_mouseCursor != cursor) {
_mouseCursor = cursor;
@@ -831,7 +831,7 @@ void AGOSEngine::displayName(HitArea *ha) {
if (ha->flags & kBFTextBox) {
result = printTextOf(ha->flags / 256, x, y);
} else {
- result = printNameOf(ha->item_ptr, x, y);
+ result = printNameOf(ha->itemPtr, x, y);
}
if (result)
@@ -903,17 +903,17 @@ void AGOSEngine::invertBox(HitArea *ha, byte a, byte b, byte c, byte d) {
do {
for (i = 0; i != w; ++i) {
color = src[i];
- if (getGameType() == GType_WW) {
+ if (getGameType() == GType_WW) {
if (!(color & 0xF) || (color & 0xF) == 10) {
color ^= 10;
src[i] = color;
}
- } else if (getGameType() == GType_ELVIRA2) {
+ } else if (getGameType() == GType_ELVIRA2) {
if (!(color & 1)) {
color ^= 2;
src[i] = color;
}
- } else if (getGameType() == GType_ELVIRA1) {
+ } else if (getGameType() == GType_ELVIRA1) {
if (color & 1) {
color ^= 2;
src[i] = color;