Changeset 21740 for branches/gcc-kmk/src
- Timestamp:
- Oct 25, 2011, 7:05:04 PM (14 years ago)
- Location:
- branches/gcc-kmk/src/kernel32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/src/kernel32/Makefile.kmk
r21734 r21740 116 116 interlock.cpp \ 117 117 toolhelp.cpp \ 118 codepage.c pp\118 codepage.c \ 119 119 debug.cpp \ 120 120 oslibdebug.cpp \ -
branches/gcc-kmk/src/kernel32/codepage.c
r21355 r21740 211 211 if (table->info.def_char & 0xff00) 212 212 { 213 cpinfo->DefaultChar[0] = table->info.def_char & 0xff00;213 cpinfo->DefaultChar[0] = (table->info.def_char & 0xff00) >> 8; 214 214 cpinfo->DefaultChar[1] = table->info.def_char & 0x00ff; 215 215 }
Note:
See TracChangeset
for help on using the changeset viewer.