aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2009-02-21 21:05:16 +0000
committerWillem Jan Palenstijn2009-02-21 21:05:16 +0000
commit7570cfcb576fe4144bcc9868a24acbf8f8314cc4 (patch)
tree80a33cd1c5f922f3b53ac3dc28a733eddc4918b2 /engines
parent579e7628e3f24c977c7189b7748da3bcc1c69eef (diff)
downloadscummvm-rg350-7570cfcb576fe4144bcc9868a24acbf8f8314cc4.tar.gz
scummvm-rg350-7570cfcb576fe4144bcc9868a24acbf8f8314cc4.tar.bz2
scummvm-rg350-7570cfcb576fe4144bcc9868a24acbf8f8314cc4.zip
use LE functions for getInt16/putInt16
svn-id: r38744
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/tools.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/tools.h b/engines/sci/tools.h
index 00ad0da3eb..d0122dc089 100644
--- a/engines/sci/tools.h
+++ b/engines/sci/tools.h
@@ -104,9 +104,9 @@ typedef struct {
/**** FUNCTION DECLARATIONS ****/
-#define getInt16 (int16)READ_UINT16
-#define getUInt16 READ_UINT16
-#define putInt16 WRITE_UINT16
+#define getInt16 (int16)READ_LE_UINT16
+#define getUInt16 READ_LE_UINT16
+#define putInt16 WRITE_LE_UINT16
/* --- */