aboutsummaryrefslogtreecommitdiff
path: root/scumm/intern.h
diff options
context:
space:
mode:
authorTravis Howell2004-02-24 00:43:01 +0000
committerTravis Howell2004-02-24 00:43:01 +0000
commit10f95809ab80f0d108a9abe45bac1de63117cfa5 (patch)
treea1ad1684cf75b70bccfa04779475336eac583221 /scumm/intern.h
parent87438d54177e3b644769f785442161c222005380 (diff)
downloadscummvm-rg350-10f95809ab80f0d108a9abe45bac1de63117cfa5.tar.gz
scummvm-rg350-10f95809ab80f0d108a9abe45bac1de63117cfa5.tar.bz2
scummvm-rg350-10f95809ab80f0d108a9abe45bac1de63117cfa5.zip
Rename a few opcodes
svn-id: r13011
Diffstat (limited to 'scumm/intern.h')
-rw-r--r--scumm/intern.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/scumm/intern.h b/scumm/intern.h
index 926053bd98..f35638ad7b 100644
--- a/scumm/intern.h
+++ b/scumm/intern.h
@@ -562,6 +562,9 @@ protected:
void redimArray(int arrayId, int newX, int newY, int d);
int readFileToArray(int slot, int32 size);
void writeFileFromArray(int slot, int resID);
+ int kernelGetFunctions1(byte *addr, int arg1, int arg2, int arg3, int agr4);
+ void kernelSetFunctions1(byte *addr);
+ void seekFilePos(int slot, int offset, int mode);
/* Version 6 script opcodes */
void o6_drawBlastObject();
@@ -584,17 +587,14 @@ protected:
void o6_rename();
void o6_writeFile();
void o6_setVolume();
- void o6_seekFile();
+ void o6_seekFilePos();
void o6_localizeArray();
void o6_unknownEE();
void o6_unknownFA();
void o6_redimArray();
void o6_readINI();
void o6_unknownF9();
- void o6_tellFile();
- void kernelSetFunctions1(byte *addr);
- int kernelGetFunctions1(byte *addr, int arg1, int arg2, int arg3, int agr4);
- void seekWrapper(int slot, int offset, int mode);
+ void o6_readFilePos();
};
class ScummEngine_v7 : public ScummEngine_v6 {