ACCESS: Fix resetting cursor after conversations

This commit is contained in:
Paul Gilbert 2014-11-02 16:28:06 -05:00
parent 958dd0b77b
commit e46c0ac66a
4 changed files with 2 additions and 4 deletions

View File

@ -51,7 +51,6 @@ AccessEngine::AccessEngine(OSystem *syst, const AccessGameDescription *gameDesc)
_destIn = nullptr;
_current = nullptr;
_pCount = 0;
_normalMouse = true;
_mouseMode = 0;
_currentMan = 0;
_currentManOld = -1;

View File

@ -172,7 +172,6 @@ public:
Common::Array<ExtraCell> _extraCells;
ImageEntryList _images;
int _pCount;
bool _normalMouse;
int _mouseMode;
int _currentManOld;

View File

@ -84,7 +84,7 @@ void AmazonRoom::reloadRoom1() {
}
_selectCommand = -1;
_vm->_normalMouse = 1;
_vm->_events->_normalMouse = CURSOR_CROSSHAIRS;
_vm->_mouseMode = 0;
_vm->_boxSelect = true;
_vm->_player->_playerOff = false;

View File

@ -82,7 +82,7 @@ void MartianRoom::reloadRoom1() {
}
_selectCommand = -1;
_vm->_normalMouse = 1;
_vm->_events->_normalMouse = CURSOR_CROSSHAIRS;
_vm->_mouseMode = 0;
_vm->_boxSelect = true;
_vm->_player->_playerOff = false;