aboutsummaryrefslogtreecommitdiff
path: root/scumm/intern.h
diff options
context:
space:
mode:
authorMax Horn2002-12-23 20:25:47 +0000
committerMax Horn2002-12-23 20:25:47 +0000
commit8380596966abcf889ad6dda767557a4db28468a8 (patch)
treebc60ff3d060e43d6f94c6f4e50714b15ed44dbef /scumm/intern.h
parent4524d870f3feb8c998c7128729b431c1ed565355 (diff)
downloadscummvm-rg350-8380596966abcf889ad6dda767557a4db28468a8.tar.gz
scummvm-rg350-8380596966abcf889ad6dda767557a4db28468a8.tar.bz2
scummvm-rg350-8380596966abcf889ad6dda767557a4db28468a8.zip
don't let unknown V8 codes pass by (it makes debugging pretty hard)
svn-id: r6081
Diffstat (limited to 'scumm/intern.h')
-rw-r--r--scumm/intern.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/intern.h b/scumm/intern.h
index f5b914b86e..8a702d009e 100644
--- a/scumm/intern.h
+++ b/scumm/intern.h
@@ -407,8 +407,6 @@ protected:
void decodeParseString(int m, int n);
/* Version 8 script opcodes */
- void o8_unknown();
-
void o8_mod();
void o8_wait();
@@ -427,8 +425,10 @@ protected:
void o8_cameraOps();
void o8_verbOps();
+ void o8_soundKludge();
void o8_system();
void o8_kludge();
+ void o8_kludge2();
};