Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 6264 → Rev 6265

/data/common/icons32.png
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/data/rus/settings/game_center.ini
36,12 → 36,12
Sudoku=/sys/games/sudoku,25
Mine=/sys/games/mine,14
Flood-It=/sys/games/flood-it,27
Knight=/kolibrios/games/knight
Knight=/kolibrios/games/knight,82
15=/sys/games/15,34
Gomoku=/sys/games/gomoku,24
Reversi=/sys/games/reversi
C4=/sys/games/c4
Square=/sys/games/msquare
Square=/sys/games/msquare,25
Freecell=/sys/games/freecell,68
Memory=/sys/games/mblocks,11
Lines=/sys/games/lines,59
/programs/cmm/lib/font.h
178,8 → 178,12
byte Cp866ToAnsi(byte s) {
IF(s>=128)&&(s<=175)s+=64;
ELSE IF(s>=224)&&(s<=239)s+=16;
ELSE IF(s==241)s=184; //yo
ELSE IF(s==240)s=168; //YO
ELSE IF(s==241)s=184; //e rus with dots (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;
}