diff --git a/reactos/boot/bootdata/packages/reactos.dff b/reactos/boot/bootdata/packages/reactos.dff index 8881c8b5460..fa9e7d48d15 100644 --- a/reactos/boot/bootdata/packages/reactos.dff +++ b/reactos/boot/bootdata/packages/reactos.dff @@ -15,7 +15,7 @@ Signature = "$ReactOS$" [Directories] 1 = system32 2 = system32\drivers -3 = media\fonts +3 = Fonts 4 = 5 = system32\drivers\etc 6 = inf diff --git a/reactos/boot/bootdata/txtsetup.sif b/reactos/boot/bootdata/txtsetup.sif index f4c3c838e60..ee5883dcacb 100644 --- a/reactos/boot/bootdata/txtsetup.sif +++ b/reactos/boot/bootdata/txtsetup.sif @@ -8,7 +8,7 @@ Signature = "$ReactOS$" 3 = system32\config 4 = system32\drivers 5 = media -6 = media\fonts +6 = Fonts 7 = bin [SourceDisksFiles] diff --git a/reactos/subsystems/win32/win32k/objects/text.c b/reactos/subsystems/win32/win32k/objects/text.c index e4e5c2fa1fe..d469bed0e00 100644 --- a/reactos/subsystems/win32/win32k/objects/text.c +++ b/reactos/subsystems/win32/win32k/objects/text.c @@ -176,7 +176,7 @@ IntLoadSystemFonts(VOID) BOOLEAN bRestartScan = TRUE; NTSTATUS Status; - RtlInitUnicodeString(&Directory, L"\\SystemRoot\\media\\fonts\\"); + RtlInitUnicodeString(&Directory, L"\\SystemRoot\\Fonts\\"); /* FIXME: Add support for other font types */ RtlInitUnicodeString(&SearchPattern, L"*.ttf");