aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v72he.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-03-23 00:16:51 +0000
committerTravis Howell2005-03-23 00:16:51 +0000
commit8e84ee694c90c02417720eb99f45b3855607649a (patch)
treef5dc2c8f17ba648e7dd597088e807c1c92afa771 /scumm/script_v72he.cpp
parentdf0869f51d14ecd12d549a5d025e1db33344b479 (diff)
downloadscummvm-rg350-8e84ee694c90c02417720eb99f45b3855607649a.tar.gz
scummvm-rg350-8e84ee694c90c02417720eb99f45b3855607649a.tar.bz2
scummvm-rg350-8e84ee694c90c02417720eb99f45b3855607649a.zip
Add HE90 version of kernelGet/Set opcode and move HE90 specific cases over.
svn-id: r17200
Diffstat (limited to 'scumm/script_v72he.cpp')
-rw-r--r--scumm/script_v72he.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp
index b7e96f667b..dcffaf9fac 100644
--- a/scumm/script_v72he.cpp
+++ b/scumm/script_v72he.cpp
@@ -1559,23 +1559,6 @@ void ScummEngine_v72he::o72_kernelGetFunctions() {
virtScreenSave(ah->data, args[1], args[2], args[3], args[4]);
push(readVar(0));
break;
- case 1001:
- {
- double a = args[1] * PI / 180.;
- push((int)(sin(a) * 100000));
- }
- break;
- case 1002:
- {
- double a = args[1] * PI / 180.;
- push((int)(cos(a) * 100000));
- }
- break;
- case 2001:
- // Used in football
- push(0);
- warning("o72_kernelGetFunctions: unhandled case 2001");
- break;
default:
error("o72_kernelGetFunctions: default case %d", args[0]);
}