diff options
Diffstat (limited to 'engines/titanic/game/chev_code.cpp')
| -rw-r--r-- | engines/titanic/game/chev_code.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/engines/titanic/game/chev_code.cpp b/engines/titanic/game/chev_code.cpp index 0acdf575f4..9381e1563a 100644 --- a/engines/titanic/game/chev_code.cpp +++ b/engines/titanic/game/chev_code.cpp @@ -69,7 +69,7 @@ bool CChevCode::SetChevFloorBits(CSetChevFloorBits *msg) {  	int section = (msg->_floorNum + 4) / 10;  	int index = (msg->_floorNum + 4) % 10;  	_chevCode &= ~0xFF00; -	 +  	int val = 0;  	switch (section) {  	case 0: @@ -87,7 +87,7 @@ bool CChevCode::SetChevFloorBits(CSetChevFloorBits *msg) {  	default:  		break;  	} -	 +  	_chevCode |= ((index + val) << 8);  	return true;  } | 
