diff options
author | Travis Howell | 2005-11-19 10:48:30 +0000 |
---|---|---|
committer | Travis Howell | 2005-11-19 10:48:30 +0000 |
commit | 97b6f7c843fa703ef09e5a0cb5e36fe5789a19f0 (patch) | |
tree | 6b03e8329429a44d3d1d6e5b7190df602a4debd1 | |
parent | 70fc8eff6545bbddf640876ada2f1ebc39e26e8a (diff) | |
download | scummvm-rg350-97b6f7c843fa703ef09e5a0cb5e36fe5789a19f0.tar.gz scummvm-rg350-97b6f7c843fa703ef09e5a0cb5e36fe5789a19f0.tar.bz2 scummvm-rg350-97b6f7c843fa703ef09e5a0cb5e36fe5789a19f0.zip |
Fix mistake in my earlier commits.
svn-id: r19665
-rw-r--r-- | simon/charset.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/charset.cpp b/simon/charset.cpp index d16af80edb..1aab21a79f 100644 --- a/simon/charset.cpp +++ b/simon/charset.cpp @@ -1198,7 +1198,7 @@ void SimonEngine::video_putchar_drawchar(FillOrCopyStruct *fcs, uint x, uint y, dst = dx_lock_2(); dst += y * _dxSurfacePitch + x * 8 + fcs->textColumnOffset; - switch(_language == 21) { + switch(_language) { case Common::RU_RUS: src = russian_video_font + (chr - 0x20) * 8; break; |