aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/vol.h
diff options
context:
space:
mode:
authorStrangerke2011-06-10 09:14:43 +0200
committerStrangerke2011-06-10 09:14:43 +0200
commita5c569eff2c4e2f30ef0523169ab22ed92f9894a (patch)
tree98aae16ee8c0c8e5c57cfe55672bb054d88125b5 /engines/cge/vol.h
parent03c540abffe39a7ea32173c2cf8f5e70d371588b (diff)
downloadscummvm-rg350-a5c569eff2c4e2f30ef0523169ab22ed92f9894a.tar.gz
scummvm-rg350-a5c569eff2c4e2f30ef0523169ab22ed92f9894a.tar.bz2
scummvm-rg350-a5c569eff2c4e2f30ef0523169ab22ed92f9894a.zip
CGE: Remove far and near keywords
Diffstat (limited to 'engines/cge/vol.h')
-rw-r--r--engines/cge/vol.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cge/vol.h b/engines/cge/vol.h
index 80cd759a47..74b4a2b648 100644
--- a/engines/cge/vol.h
+++ b/engines/cge/vol.h
@@ -55,9 +55,9 @@ class DAT
friend VFILE;
static VOLBASE File;
public:
- static Boolean Append (byte far * buf, word len);
+ static Boolean Append (byte * buf, word len);
static Boolean Write (CFILE& f);
- static Boolean Read (long org, word len, byte far * buf);
+ static Boolean Read (long org, word len, byte * buf);
};