diff options
| -rw-r--r-- | simon/charset.cpp | 45 | 
1 files changed, 29 insertions, 16 deletions
| diff --git a/simon/charset.cpp b/simon/charset.cpp index ee1bc58b95..ae1221e059 100644 --- a/simon/charset.cpp +++ b/simon/charset.cpp @@ -217,8 +217,7 @@ void SimonState::video_putchar(FillOrCopyStruct *fcs, byte c) {  			fcs->textRow--;  		} -		video_putchar_drawchar(fcs, fcs->textColumn + fcs->x, -														fcs->textRow * 8 + fcs->y, c); +		video_putchar_drawchar(fcs, fcs->textColumn + fcs->x, fcs->textRow * 8 + fcs->y, c);  		fcs->textLength++;  		fcs->textColumnOffset += 6; @@ -243,20 +242,20 @@ void SimonState::video_putchar_newline(FillOrCopyStruct *fcs) {  static const byte hebrew_video_font[] = {  	0, 0, 0, 0, 0, 0, 0, 0, -	0, 176, 32, 112, 112, 32, 32, 0, -	32, 0, 48, 48, 96, 0, 0, 0, -	0, 0, 0, 144, 0, 96, 144, 144, -	104, 0, 0, 144, 0, 96, 144, 144, -	96, 0, 0, 144, 0, 144, 144, 144, -	96, 0, 0, 16, 40, 16, 42, 68, -	58, 0, 48, 48, 96, 0, 0, 0, -	0, 0, 0, 4, 8, 8, 8, 8, -	4, 0, 0, 32, 16, 16, 16, 16, -	32, 0, 0, 0, 20, 8, 62, 8, -	20, 0, 0, 112, 136, 240, 136, 136, -	240, 0, 0, 0, 0, 0, 0, 48, -	48, 96, 0, 0, 0, 240, 100, 0, -	178, 0, 9, 0, 176, 48, 48, 0, +	32, 112, 112, 32, 32, 0, 32, 0, +	48, 48, 96, 0, 0, 0, 0, 0, +	0, 144, 0, 96, 144, 144, 104, 0, +	0, 144, 0, 96, 144, 144, 96, 0, +	0, 144, 0, 144, 144, 144, 96, 0, +	0, 16, 40, 16, 42, 68, 58, 0, +	48, 48, 96, 0, 0, 0, 0, 0, +	0, 4, 8, 8, 8, 8, 4, 0, +	0, 32, 16, 16, 16, 16, 32, 0, +	0, 0, 20, 8, 62, 8, 20, 0, +	0, 112, 136, 240, 136, 136, 240, 0, +	0, 0, 0, 0, 0, 48, 48, 96, +	0, 0, 0, 240, 0, 0, 0, 0, +	0, 0, 0, 0, 0, 48, 48, 0,  	16, 32, 0, 120, 112, 64, 56, 0,  	112, 136, 152, 168, 200, 136, 112, 0,  	32, 96, 32, 32, 32, 32, 112, 0, @@ -340,6 +339,20 @@ static const byte hebrew_video_font[] = {  	0, 0, 0, 0, 0, 0, 248, 0,  	139, 2, 178, 252, 8, 0, 176, 240,  	8, 0, 176, 32, 33, 34, 35, 36, +	37, 38, 39, 40, 41, 42, 43, 90, +	45, 85, 47, 48, 49, 50, 51, 52, +	53, 54, 55, 56, 57, 83, 83, 90, +	61, 85, 63, 35, 89, 80, 65, 66, +	87, 75, 82, 73, 79, 71, 76, 74, +	86, 78, 77, 84, 47, 88, 67, 64, +	69, 68, 44, 81, 72, 70, 91, 92, +	93, 94, 95, 96, 89, 80, 65, 66, +	87, 75, 82, 73, 79, 71, 76, 74, +	86, 78, 77, 84, 47, 88, 67, 64, +	69, 68, 44, 81, 72, 70, 123, 124, +	125, 126, 127, 96, 0, 178, 0, 16, +	0, 176, 255, 64, 0, 176, 13, 32, +	32, 32, 32, 32, 32, 32  };  static const byte italian_video_font[] = { | 
