aboutsummaryrefslogtreecommitdiff
path: root/sys.cpp
diff options
context:
space:
mode:
authorLudvig Strigeus2001-12-01 17:06:13 +0000
committerLudvig Strigeus2001-12-01 17:06:13 +0000
commit95646feac9f3aa20a32c828d16ebf662fb281883 (patch)
tree2ab591812293fd5edd9c5e2a2fad28662b7ea832 /sys.cpp
parent5ff70c5de11ad1c68b8f53e41324f3e5a264b255 (diff)
downloadscummvm-rg350-95646feac9f3aa20a32c828d16ebf662fb281883.tar.gz
scummvm-rg350-95646feac9f3aa20a32c828d16ebf662fb281883.tar.bz2
scummvm-rg350-95646feac9f3aa20a32c828d16ebf662fb281883.zip
adlib sound support, use USE_ADLIB
svn-id: r3510
Diffstat (limited to 'sys.cpp')
-rw-r--r--sys.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/sys.cpp b/sys.cpp
index 2b67f30012..5f189c67df 100644
--- a/sys.cpp
+++ b/sys.cpp
@@ -55,6 +55,10 @@ bool Scumm::fileEof(void *file) {
return feof((FILE*)file) != 0;
}
+uint32 Scumm::filePos(void *handle) {
+ return ftell((FILE*)handle);
+}
+
void Scumm::fileSeek(void *file, long offs, int whence) {
switch(_fileMode) {
case 1: case 2: