1 Commits

Author SHA1 Message Date
534ad63ae8 Move font data to a source file 2025-10-05 10:56:00 +02:00
3 changed files with 3964 additions and 3951 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -622,7 +622,7 @@ Configuration::ParseConfigFile(IN CONST PCHAR RawConfig,
SectionName = InputData; SectionName = InputData;
/* Find end of the section name */ /* Find end of the section name */
while(*InputData != ']' && *InputData != '\0' && *InputData != '\r' && *InputData != '\n') while(*InputData != ']' && *InputData != '\0' && *InputData != '\n')
{ {
/* Advance to the next character */ /* Advance to the next character */
InputData++; InputData++;
@@ -672,7 +672,7 @@ Configuration::ParseConfigFile(IN CONST PCHAR RawConfig,
Key = InputData; Key = InputData;
/* Find end of the key */ /* Find end of the key */
while(*InputData != '=' && *InputData != '\0' && *InputData != '\r' && *InputData != '\n') while(*InputData != '=' && *InputData != '\0' && *InputData != '\n')
{ {
/* Advance to the next character */ /* Advance to the next character */
InputData++; InputData++;
@@ -700,7 +700,7 @@ Configuration::ParseConfigFile(IN CONST PCHAR RawConfig,
Value = InputData; Value = InputData;
/* Find end of the value */ /* Find end of the value */
while(*InputData != '\0' && *InputData != '\r' && *InputData != '\n') while(*InputData != '\0' && *InputData != '\n')
{ {
/* Advance to the next character */ /* Advance to the next character */
InputData++; InputData++;

3960
xtoskrnl/hl/fbdevfont.cc Normal file

File diff suppressed because it is too large Load Diff