diff options
Diffstat (limited to 'scumm/script_v6.cpp')
-rw-r--r-- | scumm/script_v6.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp index c5bcc106ea..0efd69cf2e 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -1478,7 +1478,7 @@ void ScummEngine_v6::o6_getInventoryCount() { void ScummEngine_v6::o6_getVerbFromXY() { int y = pop(); int x = pop(); - int over = checkMouseOver(x, y); + int over = findVerbAtPos(x, y); if (over) over = _verbs[over].verbid; push(over); |