diff options
| author | Walter van Niftrik | 2011-03-04 21:07:52 +0100 |
|---|---|---|
| committer | Walter van Niftrik | 2011-03-04 21:12:00 +0100 |
| commit | f96e93047a6407eeb5c9e59825e55648f74c6a3d (patch) | |
| tree | af55bb4a4f9ca9c41e3fa982f594440add58c52f /engines/sci/engine/kstring.cpp | |
| parent | d95b5331fb266de492c45d348ccb8313ca7824aa (diff) | |
| download | scummvm-rg350-f96e93047a6407eeb5c9e59825e55648f74c6a3d.tar.gz scummvm-rg350-f96e93047a6407eeb5c9e59825e55648f74c6a3d.tar.bz2 scummvm-rg350-f96e93047a6407eeb5c9e59825e55648f74c6a3d.zip | |
SCI: Use BE string handling for Mac games.
Diffstat (limited to 'engines/sci/engine/kstring.cpp')
| -rw-r--r-- | engines/sci/engine/kstring.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/kstring.cpp b/engines/sci/engine/kstring.cpp index df77b8e933..730f7af9b8 100644 --- a/engines/sci/engine/kstring.cpp +++ b/engines/sci/engine/kstring.cpp @@ -113,7 +113,7 @@ reg_t kStrAt(EngineState *s, int argc, reg_t *argv) { reg_t &tmp = dest_r.reg[offset / 2]; bool oddOffset = offset & 1; - if (g_sci->getPlatform() == Common::kPlatformAmiga) + if (g_sci->isBE()) oddOffset = !oddOffset; if (!oddOffset) { |
