diff options
| author | Paul Gilbert | 2017-07-08 17:24:28 -0400 | 
|---|---|---|
| committer | Paul Gilbert | 2017-07-08 17:24:28 -0400 | 
| commit | a20aa338c2d0a5b84e39337de4b72fab34bdd9cb (patch) | |
| tree | 7e1763b86c4f5812e35b442414573889745a098f | |
| parent | 558a409c00a0cced6a16241ac89f826cf3ead96c (diff) | |
| download | scummvm-rg350-a20aa338c2d0a5b84e39337de4b72fab34bdd9cb.tar.gz scummvm-rg350-a20aa338c2d0a5b84e39337de4b72fab34bdd9cb.tar.bz2 scummvm-rg350-a20aa338c2d0a5b84e39337de4b72fab34bdd9cb.zip  | |
TITANIC: Show Vision Centre on bartop with pickup hand cursor
| -rw-r--r-- | engines/titanic/game/pickup/pick_up_vis_centre.cpp | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/titanic/game/pickup/pick_up_vis_centre.cpp b/engines/titanic/game/pickup/pick_up_vis_centre.cpp index baf1763d09..f4f41aa978 100644 --- a/engines/titanic/game/pickup/pick_up_vis_centre.cpp +++ b/engines/titanic/game/pickup/pick_up_vis_centre.cpp @@ -37,6 +37,10 @@ void CPickUpVisCentre::save(SimpleFile *file, int indent) {  void CPickUpVisCentre::load(SimpleFile *file) {  	file->readNumber();  	CPickUp::load(file); + +	// WORKAROUND: Show the hand cursor when highlighting to indicate +	// that the vision center can be picked up +	_cursorId = CURSOR_HAND;  }  | 
