fix ЄєЇї appearance in kf_fonts; icons: knight for lev, update 3d pot icon; update rus game_center.ini
git-svn-id: svn://kolibrios.org@6265 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
e3cfd43e3b
commit
8afc377269
Binary file not shown.
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 32 KiB |
@ -36,12 +36,12 @@ Checkers=/sys/games/checkers,20
|
|||||||
Sudoku=/sys/games/sudoku,25
|
Sudoku=/sys/games/sudoku,25
|
||||||
Mine=/sys/games/mine,14
|
Mine=/sys/games/mine,14
|
||||||
Flood-It=/sys/games/flood-it,27
|
Flood-It=/sys/games/flood-it,27
|
||||||
Knight=/kolibrios/games/knight
|
Knight=/kolibrios/games/knight,82
|
||||||
15=/sys/games/15,34
|
15=/sys/games/15,34
|
||||||
Gomoku=/sys/games/gomoku,24
|
Gomoku=/sys/games/gomoku,24
|
||||||
Reversi=/sys/games/reversi
|
Reversi=/sys/games/reversi
|
||||||
C4=/sys/games/c4
|
C4=/sys/games/c4
|
||||||
Square=/sys/games/msquare
|
Square=/sys/games/msquare,25
|
||||||
Freecell=/sys/games/freecell,68
|
Freecell=/sys/games/freecell,68
|
||||||
Memory=/sys/games/mblocks,11
|
Memory=/sys/games/mblocks,11
|
||||||
Lines=/sys/games/lines,59
|
Lines=/sys/games/lines,59
|
||||||
|
@ -178,8 +178,12 @@
|
|||||||
byte Cp866ToAnsi(byte s) {
|
byte Cp866ToAnsi(byte s) {
|
||||||
IF(s>=128)&&(s<=175)s+=64;
|
IF(s>=128)&&(s<=175)s+=64;
|
||||||
ELSE IF(s>=224)&&(s<=239)s+=16;
|
ELSE IF(s>=224)&&(s<=239)s+=16;
|
||||||
ELSE IF(s==241)s=184; //yo
|
ELSE IF(s==241)s=184; //e rus with dots (yo)
|
||||||
ELSE IF(s==240)s=168; //YO
|
ELSE IF(s==240)s=168; //E rus with dots (yo)
|
||||||
|
ELSE IF(s==242)s='E'; //E urk (ye)
|
||||||
|
ELSE IF(s==243)s=186; //e urk (ye)
|
||||||
|
ELSE IF(s==244)s='I'; //I urk (yi)
|
||||||
|
ELSE IF(s==245)s=191; //i urk (yi)
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user