mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
update comment
svn path=/trunk/; revision=31947
This commit is contained in:
parent
ba4d75b417
commit
319beb2581
1 changed files with 2 additions and 1 deletions
|
@ -162,7 +162,8 @@ NTSTATUS ExtractFont(UINT CodePage, PUCHAR FontBitField)
|
|||
if(strncmp(FileHeader, PsfHeader, 2) == 0)
|
||||
{
|
||||
/* only load fonts with a size of 8
|
||||
and filemode 0 (256 characters, no unicode_data) */
|
||||
and filemode 0 (256 characters, no unicode_data)
|
||||
or filemode 2 (256 characters, unicode_data is skipped) */
|
||||
if ((FileHeader[3] == 8) && ((FileHeader[4] == 0) || (FileHeader[4] == 2)))
|
||||
{
|
||||
Status = ZwReadFile(Handle, NULL, NULL, NULL, &IoStatusBlock,
|
||||
|
|
Loading…
Reference in a new issue