aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir2011-06-08 02:17:28 +0400
committerAlyssa Milburn2011-06-15 17:32:27 +0200
commit08e2316d875443ce820590004daba0e526e93204 (patch)
tree6b1f2bcc36660ee0904653aa6ed33042722d0f6d
parent6a33ce30f2041743624bcc115c4d74be6c57b033 (diff)
downloadscummvm-rg350-08e2316d875443ce820590004daba0e526e93204.tar.gz
scummvm-rg350-08e2316d875443ce820590004daba0e526e93204.tar.bz2
scummvm-rg350-08e2316d875443ce820590004daba0e526e93204.zip
DREAMWEB: more stubs
-rw-r--r--engines/dreamweb/dreamweb.cpp17
1 files changed, 11 insertions, 6 deletions
diff --git a/engines/dreamweb/dreamweb.cpp b/engines/dreamweb/dreamweb.cpp
index 6938423c69..f68818f572 100644
--- a/engines/dreamweb/dreamweb.cpp
+++ b/engines/dreamweb/dreamweb.cpp
@@ -327,19 +327,20 @@ void interupttest(Context &context) {
}
void disablesoundint(Context &context) {
- ::error("disablesoundint");
+ warning("disablesoundint: STUB");
}
void enablesoundint(Context &context) {
- ::error("enablesoundint");
+ warning("enablesoundint: STUB");
}
void checksoundint(Context &context) {
- ::error("checksoundint");
+ context.data.byte(kTestresult) = 1;
+ warning("checksoundint: STUB");
}
void setsoundoff(Context &context) {
- ::error("setsoundoff");
+ warning("setsoundoff: STUB");
}
@@ -348,7 +349,10 @@ void loadsecondsample(Context &context) {
}
void loadsample(Context &context) {
- ::error("loadsample");
+ warning("loadsample: STUB");
+ openfile(context);
+ closefile(context);
+ //readheader(context); //add exports to tasm recompiler
}
void loadspeech(Context &context) {
@@ -356,7 +360,8 @@ void loadspeech(Context &context) {
}
void scanfornames(Context &context) {
- ::error("scanfornames");
+ warning("scanfornames: STUB");
+ context.ch = 0;
}
void saveseg(Context &context) {