diff options
author | Willem Jan Palenstijn | 2011-12-04 14:16:30 +0100 |
---|---|---|
committer | Willem Jan Palenstijn | 2011-12-04 20:48:10 +0100 |
commit | f154ff626bfab1493e7af19f58e650f10f28eff2 (patch) | |
tree | 01334a8804cd0360705f3fbd70702c900a0e9295 /engines | |
parent | 6171cf2f60d6f6d651de8f89c54644ba2d85e83e (diff) | |
download | scummvm-rg350-f154ff626bfab1493e7af19f58e650f10f28eff2.tar.gz scummvm-rg350-f154ff626bfab1493e7af19f58e650f10f28eff2.tar.bz2 scummvm-rg350-f154ff626bfab1493e7af19f58e650f10f28eff2.zip |
DREAMWEB: Fix kernChars
Diffstat (limited to 'engines')
-rw-r--r-- | engines/dreamweb/print.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dreamweb/print.cpp b/engines/dreamweb/print.cpp index 1057a8519b..dce5fc76be 100644 --- a/engines/dreamweb/print.cpp +++ b/engines/dreamweb/print.cpp @@ -218,7 +218,7 @@ uint8 DreamGenContext::getNumber(const Frame *charSet, const uint8 *string, uint } uint8 DreamGenContext::kernChars(uint8 firstChar, uint8 secondChar, uint8 width) { - if ((firstChar == 'a') || (al == 'u')) { + if ((firstChar == 'a') || (firstChar == 'u')) { if ((secondChar == 'n') || (secondChar == 't') || (secondChar == 'r') || (secondChar == 'i') || (secondChar == 'l')) return width-1; } |