diff options
author | Max Horn | 2002-08-04 13:25:06 +0000 |
---|---|---|
committer | Max Horn | 2002-08-04 13:25:06 +0000 |
commit | f166da98fbcca22b9d21dab051fe390ea1bd2257 (patch) | |
tree | 0bdfaef8daa79c69ac40305da89a97f73bfd0d33 /simon/simonverb.cpp | |
parent | 6e8bc1b98fe4335c5666a248971a36b37a0599c5 (diff) | |
download | scummvm-rg350-f166da98fbcca22b9d21dab051fe390ea1bd2257.tar.gz scummvm-rg350-f166da98fbcca22b9d21dab051fe390ea1bd2257.tar.bz2 scummvm-rg350-f166da98fbcca22b9d21dab051fe390ea1bd2257.zip |
Patch #590751: SIMON: FillOrCopyStruct unknowns
svn-id: r4699
Diffstat (limited to 'simon/simonverb.cpp')
-rw-r--r-- | simon/simonverb.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/simon/simonverb.cpp b/simon/simonverb.cpp index 3bdb2da014..77065f7a9c 100644 --- a/simon/simonverb.cpp +++ b/simon/simonverb.cpp @@ -99,8 +99,8 @@ void SimonState::showActionString(uint x, const byte *string) if (fcs == NULL || fcs->text_color == 0) return; - fcs->unk1 = x >> 3; - fcs->unk3 = x & 7; + fcs->textColumn = x >> 3; + fcs->textColumnOffset = x & 7; for (; *string; string++) video_putchar(fcs, *string); |