Ticket #9231: sentence-highlight.patch

File sentence-highlight.patch, 600 bytes (added by SF/tobigun, 13 years ago)

sentence highlighting

  • verbs.cpp

     
    323323                }
    324324        }
    325325
    326         if (new_box != _mouseOverBoxV2) {
     326        if ((new_box != _mouseOverBoxV2) || (_game.version == 0)) {
    327327                if (_mouseOverBoxV2 != -1) {
    328328                        rect = _mouseOverBoxesV2[_mouseOverBoxV2].rect;
    329329
     
    524524}
    525525
    526526void ScummEngine_v0::handleMouseOver(bool updateInventory) {
    527         ScummEngine_v2::handleMouseOver(updateInventory);
    528 
    529527        drawSentence();
     528        ScummEngine_v2::handleMouseOver(updateInventory);
    530529}
    531530
    532531#ifdef ENABLE_HE