aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/dreamweb/dreamgen.cpp11
-rw-r--r--engines/dreamweb/dreamgen.h7
-rw-r--r--engines/dreamweb/stubs.h1
-rw-r--r--engines/dreamweb/use.cpp9
4 files changed, 13 insertions, 15 deletions
diff --git a/engines/dreamweb/dreamgen.cpp b/engines/dreamweb/dreamgen.cpp
index e85f62ec16..89e8ca3891 100644
--- a/engines/dreamweb/dreamgen.cpp
+++ b/engines/dreamweb/dreamgen.cpp
@@ -7782,17 +7782,6 @@ cigarette:
data.byte(kGetback) = 1;
}
-void DreamGenContext::showseconduse() {
- STACK_CHECK;
- getobtextstart();
- nextcolon();
- nextcolon();
- nextcolon();
- usetext();
- cx = 400;
- hangonp();
-}
-
void DreamGenContext::usecardreader1() {
STACK_CHECK;
_cmp(data.byte(kWithobject), 255);
diff --git a/engines/dreamweb/dreamgen.h b/engines/dreamweb/dreamgen.h
index 1f0eb688b3..89a07bc9d3 100644
--- a/engines/dreamweb/dreamgen.h
+++ b/engines/dreamweb/dreamgen.h
@@ -264,7 +264,6 @@ public:
static const uint16 addr_usecardreader3 = 0xc66c;
static const uint16 addr_usecardreader2 = 0xc668;
static const uint16 addr_usecardreader1 = 0xc664;
- static const uint16 addr_showseconduse = 0xc660;
static const uint16 addr_uselighter = 0xc65c;
static const uint16 addr_usepoolreader = 0xc658;
static const uint16 addr_calledensdlift = 0xc654;
@@ -1437,6 +1436,7 @@ public:
void adjustright();
void putunderzoom();
void vsync();
+ //void showseconduse();
//void finishedwalking();
void findinvpos();
void dumpmenu();
@@ -1547,7 +1547,6 @@ public:
//void getyad();
//void reconstruct();
void soldier1();
- //void animpointer();
void getundercentre();
void checkforexit();
void loadseg();
@@ -1583,7 +1582,7 @@ public:
void getback1();
void setlocation();
void fadefromwhite();
- void checksoundint();
+ //void animpointer();
void usewindow();
void wearshades();
//void onedigit();
@@ -1851,7 +1850,7 @@ public:
//void showryanpage();
//void printlogo();
void allpointer();
- void showseconduse();
+ void checksoundint();
void clearreels();
void malefan();
void dosaveload();
diff --git a/engines/dreamweb/stubs.h b/engines/dreamweb/stubs.h
index 6be62d1cce..ae26e1fe01 100644
--- a/engines/dreamweb/stubs.h
+++ b/engines/dreamweb/stubs.h
@@ -341,4 +341,5 @@
void usecharset1();
void getbackfromob();
void showfirstuse();
+ void showseconduse();
diff --git a/engines/dreamweb/use.cpp b/engines/dreamweb/use.cpp
index 4aeb35f70f..278767aa7c 100644
--- a/engines/dreamweb/use.cpp
+++ b/engines/dreamweb/use.cpp
@@ -185,5 +185,14 @@ void DreamGenContext::showfirstuse() {
hangonp(400);
}
+void DreamGenContext::showseconduse() {
+ uint8 *obText = getobtextstartCPP();
+ findnextcolon(&obText);
+ findnextcolon(&obText);
+ findnextcolon(&obText);
+ usetext(obText);
+ hangonp(400);
+}
+
} /*namespace dreamgen */