diff options
author | Willem Jan Palenstijn | 2011-12-24 12:10:13 +0100 |
---|---|---|
committer | Willem Jan Palenstijn | 2011-12-24 12:10:35 +0100 |
commit | 0133ca823e5948e7a144ae32d2bbcceda3fdc564 (patch) | |
tree | 6d48adcefbf318ad443fd754d6a1fd721dba3852 /engines | |
parent | 64b7aee081af753366bdd2000e73f24b28b226e8 (diff) | |
download | scummvm-rg350-0133ca823e5948e7a144ae32d2bbcceda3fdc564.tar.gz scummvm-rg350-0133ca823e5948e7a144ae32d2bbcceda3fdc564.tar.bz2 scummvm-rg350-0133ca823e5948e7a144ae32d2bbcceda3fdc564.zip |
DREAMWEB: Fix wrong buffer size
Diffstat (limited to 'engines')
-rw-r--r-- | engines/dreamweb/dreambase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dreamweb/dreambase.h b/engines/dreamweb/dreambase.h index e573443674..7ba8a93c7c 100644 --- a/engines/dreamweb/dreambase.h +++ b/engines/dreamweb/dreambase.h @@ -44,7 +44,7 @@ const unsigned int kUnderTextSizeX_f = 228; // foreign version const unsigned int kUnderTextSizeY_f = 13; // foreign version const unsigned int kUnderTimedTextSizeY_f = 30; const unsigned int kUnderTextBufSize = kUnderTextSizeX_f * kUnderTextSizeY_f; -const unsigned int kUnderTimedTextBufSize = 256 * kUnderTextSizeY_f; +const unsigned int kUnderTimedTextBufSize = 256 * kUnderTimedTextSizeY_f; const unsigned int kLengthOfVars = 68; const unsigned int kNumChanges = 250; |