From 97b6f7c843fa703ef09e5a0cb5e36fe5789a19f0 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Sat, 19 Nov 2005 10:48:30 +0000 Subject: [PATCH] Fix mistake in my earlier commits. svn-id: r19665 --- simon/charset.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simon/charset.cpp b/simon/charset.cpp index d16af80edbe..1aab21a79f9 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;