aboutsummaryrefslogtreecommitdiff
path: root/engines/dreamweb/vgagrafx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/dreamweb/vgagrafx.cpp')
-rw-r--r--engines/dreamweb/vgagrafx.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/engines/dreamweb/vgagrafx.cpp b/engines/dreamweb/vgagrafx.cpp
index 9871b5e998..658f45ed04 100644
--- a/engines/dreamweb/vgagrafx.cpp
+++ b/engines/dreamweb/vgagrafx.cpp
@@ -492,5 +492,20 @@ void DreamGenContext::loadpalfromiff() {
}
}
+void DreamGenContext::createpanel() {
+ Frame *icons = (Frame *)segRef(data.word(kIcons2)).ptr(0, 0);
+ showframe(icons, 0, 8, 0, 2);
+ showframe(icons, 160, 8, 0, 2);
+ showframe(icons, 0, 104, 0, 2);
+ showframe(icons, 160, 104, 0, 2);
+}
+
+void DreamGenContext::createpanel2() {
+ createpanel();
+ Frame *icons = (Frame *)segRef(data.word(kIcons2)).ptr(0, 0);
+ showframe(icons, 0, 0, 5, 2);
+ showframe(icons, 160, 0, 5, 2);
+}
+
} /*namespace dreamgen */