aboutsummaryrefslogtreecommitdiff
path: root/engines/groovie
diff options
context:
space:
mode:
authorFilippos Karapetis2014-11-03 01:08:15 +0200
committerFilippos Karapetis2014-11-03 11:40:36 +0200
commitf733498388267e1fb848eb758a2625c157a84857 (patch)
treeb72909aa281b6d17d761640f6d4a8eb07b449195 /engines/groovie
parent124ac887fd491effed8db2b342f45d7c498c2d28 (diff)
downloadscummvm-rg350-f733498388267e1fb848eb758a2625c157a84857.tar.gz
scummvm-rg350-f733498388267e1fb848eb758a2625c157a84857.tar.bz2
scummvm-rg350-f733498388267e1fb848eb758a2625c157a84857.zip
GROOVIE: Finish implementation of o_hotspot_outrect
This is needed by the main menu in the 11th Hour
Diffstat (limited to 'engines/groovie')
-rw-r--r--engines/groovie/script.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/groovie/script.cpp b/engines/groovie/script.cpp
index 7625151082..4f4e45ddd2 100644
--- a/engines/groovie/script.cpp
+++ b/engines/groovie/script.cpp
@@ -1595,8 +1595,7 @@ void Script::o_hotspot_outrect() {
bool contained = rect.contains(mousepos);
if (!contained) {
- error("hotspot-outrect unimplemented");
- // TODO: what to do with address?
+ _currentInstruction = address;
}
}