Skip to content

Commit

Permalink
VOYEUR: Some renaming related to the computer buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
Strangerke committed Mar 6, 2014
1 parent 5cccf1f commit 0362f41
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion engines/voyeur/data.h
Expand Up @@ -148,7 +148,7 @@ class SVoy {
HotspotTimes<3> _evidenceHotspotTimes;
HotspotTimes<8> _videoHotspotTimes;

Common::Rect _rect4E4;
Common::Rect _computerButtonRect;
RectResource *_viewBounds;
PictureResource *_evPicPtrs[6];
CMapResource *_evCmPtrs[6];
Expand Down
10 changes: 5 additions & 5 deletions engines/voyeur/files_threads.cpp
Expand Up @@ -626,10 +626,10 @@ void ThreadResource::parsePlayCommands() {
_vm->_voy->_computerTimeMin = READ_LE_UINT16(dataP + 4);
_vm->_voy->_computerTimeMax = READ_LE_UINT16(dataP + 6);

_vm->_voy->_rect4E4.left = COMP_BUT_TABLE[_vm->_voy->_computerTextId * 4];
_vm->_voy->_rect4E4.top = COMP_BUT_TABLE[_vm->_voy->_computerTextId * 4 + 1];
_vm->_voy->_rect4E4.right = COMP_BUT_TABLE[_vm->_voy->_computerTextId * 4 + 2];
_vm->_voy->_rect4E4.bottom = COMP_BUT_TABLE[_vm->_voy->_computerTextId * 4 + 3];
_vm->_voy->_computerButtonRect.left = COMPUTER_BUTTON_TABLE[_vm->_voy->_computerTextId * 4];
_vm->_voy->_computerButtonRect.top = COMPUTER_BUTTON_TABLE[_vm->_voy->_computerTextId * 4 + 1];
_vm->_voy->_computerButtonRect.right = COMPUTER_BUTTON_TABLE[_vm->_voy->_computerTextId * 4 + 2];
_vm->_voy->_computerButtonRect.bottom = COMPUTER_BUTTON_TABLE[_vm->_voy->_computerTextId * 4 + 3];
}

dataP += 8;
Expand Down Expand Up @@ -1152,7 +1152,7 @@ void ThreadResource::doRoom() {
pt += Common::Point(30, 15);

hotspotId = -1;
if (voy._computerTextId != -1 && voy._rect4E4.contains(pt))
if (voy._computerTextId != -1 && voy._computerButtonRect.contains(pt))
hotspotId = 999;

for (uint idx = 0; idx < hotspots.size(); ++idx) {
Expand Down
2 changes: 1 addition & 1 deletion engines/voyeur/staticres.cpp
Expand Up @@ -57,7 +57,7 @@ const int BLIND_TABLE[] = {
5, 12, 6, 6, 13, 14, 13
};

const int COMP_BUT_TABLE[] = {
const int COMPUTER_BUTTON_TABLE[] = {
269, 128, 307, 163,
269, 128, 307, 163,
68, 79, 98, 102,
Expand Down
2 changes: 1 addition & 1 deletion engines/voyeur/staticres.h
Expand Up @@ -37,7 +37,7 @@ extern const int LEVEL_M[];

extern const int BLIND_TABLE[];

extern const int COMP_BUT_TABLE[];
extern const int COMPUTER_BUTTON_TABLE[];

extern const char *const SZ_FILENAMES[];

Expand Down

0 comments on commit 0362f41

Please sign in to comment.