aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/dreamweb/stubs.cpp4
-rw-r--r--engines/dreamweb/stubs.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/engines/dreamweb/stubs.cpp b/engines/dreamweb/stubs.cpp
index c1f8058eef..940d26a487 100644
--- a/engines/dreamweb/stubs.cpp
+++ b/engines/dreamweb/stubs.cpp
@@ -2488,6 +2488,10 @@ Frame * DreamGenContext::icons1() {
return (Frame *)getSegment(data.word(kIcons1)).ptr(0, 0);
}
+Frame * DreamGenContext::icons2() {
+ return (Frame *)getSegment(data.word(kIcons2)).ptr(0, 0);
+}
+
void DreamGenContext::playChannel0(uint8 index, uint8 repeat) {
if (data.byte(kSoundint) == 255)
return;
diff --git a/engines/dreamweb/stubs.h b/engines/dreamweb/stubs.h
index 816499d08c..54e413ff8d 100644
--- a/engines/dreamweb/stubs.h
+++ b/engines/dreamweb/stubs.h
@@ -319,6 +319,7 @@
Frame *tempGraphics2();
Frame *tempGraphics3();
Frame *icons1();
+ Frame *icons2();
void accessLightOn();
void accessLightOff();
void randomAccess(uint16 count);