kernel32: Added missing shift by 8.

This commit is contained in:
Marcus Meissner 2006-11-18 11:07:32 +01:00 committed by Alexandre Julliard
parent ef2c062c09
commit 87f9dcdb23
1 changed files with 1 additions and 1 deletions

View File

@ -1588,7 +1588,7 @@ BOOL WINAPI GetCPInfo( UINT codepage, LPCPINFO cpinfo )
}
if (table->info.def_char & 0xff00)
{
cpinfo->DefaultChar[0] = table->info.def_char & 0xff00;
cpinfo->DefaultChar[0] = (table->info.def_char & 0xff00) >> 8;
cpinfo->DefaultChar[1] = table->info.def_char & 0x00ff;
}
else