diff options
author | Borja Lorente | 2016-08-19 17:02:48 +0200 |
---|---|---|
committer | Borja Lorente | 2016-08-19 17:02:48 +0200 |
commit | 059c9a64d9505901a0c150e55af3c2ded372a214 (patch) | |
tree | a3bf53d30af64d9d763f6e8016b4861c6001189d /engines/macventure | |
parent | d1ce6793fa7f46935709d4bf7f84d0b13c535193 (diff) | |
download | scummvm-rg350-059c9a64d9505901a0c150e55af3c2ded372a214.tar.gz scummvm-rg350-059c9a64d9505901a0c150e55af3c2ded372a214.tar.bz2 scummvm-rg350-059c9a64d9505901a0c150e55af3c2ded372a214.zip |
MACVENTURE: Substitute charcodes with char constants
Diffstat (limited to 'engines/macventure')
-rw-r--r-- | engines/macventure/text.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/macventure/text.cpp b/engines/macventure/text.cpp index 46a54bd4ab..6671c28750 100644 --- a/engines/macventure/text.cpp +++ b/engines/macventure/text.cpp @@ -66,9 +66,9 @@ void TextAsset::decodeOld() { lowercase = true; } else if (val == 0x1C) { if (lowercase) { - c = 0x27; // Ascii ' + c = '\''; } else { - c = 0x22; // Ascii '"' + c = '"'; } lowercase = true; } else if (val == 0x1D) { // Composite |