https://git.reactos.org/?p=reactos.git;a=commitdiff;h=d70791660539d69ec216e7...
commit d70791660539d69ec216e70ac66c0b762ecf30b8 Author: Katayama Hirofumi MZ katayama.hirofumi.mz@gmail.com AuthorDate: Sat Oct 8 08:22:24 2022 +0900 Commit: Katayama Hirofumi MZ katayama.hirofumi.mz@gmail.com CommitDate: Sat Oct 8 08:22:24 2022 +0900
[USETUP][VGAFONTS] Improve Japanese character display
- Modify media/vgafonts/932-8x8.bin Japanese VGA font. - Use special codepoints of new font 932-8x8.bin. Appendum of #4750. Line connection bug still remains. CORE-5052 --- base/setup/usetup/mui.c | 6 +----- media/vgafonts/932-8x8.bin | Bin 2048 -> 2048 bytes 2 files changed, 1 insertion(+), 5 deletions(-)
diff --git a/base/setup/usetup/mui.c b/base/setup/usetup/mui.c index 9360cbf5554..7fab3ab131b 100644 --- a/base/setup/usetup/mui.c +++ b/base/setup/usetup/mui.c @@ -560,6 +560,7 @@ SetConsoleCodePage(VOID) switch (wCodePage) { case 28606: /* Romanian */ + case 932: /* Japanese */ /* Set special characters */ CharBullet = 0x07; CharBlock = 0x01; @@ -584,11 +585,6 @@ SetConsoleCodePage(VOID) /* FIXME: Enter 640x400 video mode */ break;
- case 932: /* Japanese */ - /* FIXME: Set special characters */ - /* FIXME: Enter 640x400 video mode */ - break; - default: /* Other codepages */ /* Set special characters */ CharBullet = 0x07; diff --git a/media/vgafonts/932-8x8.bin b/media/vgafonts/932-8x8.bin index 18128a728a7..6d47b288c90 100644 Binary files a/media/vgafonts/932-8x8.bin and b/media/vgafonts/932-8x8.bin differ