mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-20 03:25:13 +00:00
LibTextCodec: Fix minor errors in Latin2 decoder
This commit is contained in:
parent
7e79563bb9
commit
7e5199a394
Notes:
sideshowbarker
2024-07-19 00:29:02 +09:00
Author: https://github.com/lukasz-m-maciejewski Commit: https://github.com/SerenityOS/serenity/commit/7e5199a3944 Pull-request: https://github.com/SerenityOS/serenity/pull/4610
1 changed files with 3 additions and 3 deletions
|
@ -203,8 +203,8 @@ u32 convert_latin2_to_utf8(u8 in)
|
|||
MAP(0xAE, 0x17D);
|
||||
MAP(0xAF, 0x17B);
|
||||
|
||||
MAP(0xB1, 0x104);
|
||||
MAP(0xB2, 0x2BD);
|
||||
MAP(0xB1, 0x105);
|
||||
MAP(0xB2, 0x2DB);
|
||||
MAP(0xB3, 0x142);
|
||||
MAP(0xB5, 0x13E);
|
||||
MAP(0xB6, 0x15B);
|
||||
|
@ -235,7 +235,7 @@ u32 convert_latin2_to_utf8(u8 in)
|
|||
MAP(0xDB, 0x170);
|
||||
MAP(0xDE, 0x162);
|
||||
|
||||
MAP(0xE1, 0x155);
|
||||
MAP(0xE0, 0x155);
|
||||
MAP(0xE3, 0x103);
|
||||
MAP(0xE5, 0x13A);
|
||||
MAP(0xE6, 0x107);
|
||||
|
|
Loading…
Add table
Reference in a new issue