mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-21 19:51:49 +00:00
Fix bug #1536932: "MANIACNES: Crash on click in speechtext-area"
svn-id: r23962
This commit is contained in:
parent
965cfe4008
commit
25a6af2c93
1
NEWS
1
NEWS
@ -30,6 +30,7 @@ For a more comprehensive changelog for the latest experimental SVN code, see:
|
||||
- Fixed graphical glitches in HE80 version of Putt-Putt Travels Through
|
||||
Time.
|
||||
- Fixed FM-TOWNS version of Indy3 failing on Amiga port.
|
||||
- Fixed crash in MM NES when clicking on top screen area
|
||||
|
||||
Simon:
|
||||
- Improved support for international versions of the Feeble Files.
|
||||
|
@ -518,6 +518,11 @@ void ScummEngine::checkExecVerbs() {
|
||||
byte code = _mouseAndKeyboardStat & MBS_LEFT_CLICK ? 1 : 2;
|
||||
int inventoryArea = (_game.platform == Common::kPlatformNES) ? 48: 32;
|
||||
|
||||
// This could be kUnkVirtScreen.
|
||||
// Fixes bug #1536932: "MANIACNES: Crash on click in speechtext-area
|
||||
if (!zone)
|
||||
return;
|
||||
|
||||
if (_game.version <= 2 && zone->number == kVerbVirtScreen && _mouse.y <= zone->topline + 8) {
|
||||
// Click into V2 sentence line
|
||||
runInputScript(5, 0, 0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user