QDENGINE: Revert bogus mappings in transCyrillic()

It appears that those were triggered by double conversion to utf8,
so the current warning should suffice.
This commit is contained in:
Eugene Sandulenko 2024-08-25 20:17:53 +02:00
parent fde5ab1af4
commit 8962e25fe1
No known key found for this signature in database
GPG Key ID: 014D387312D34F08

View File

@ -157,9 +157,7 @@ byte *transCyrillic(const Common::String &str) {
0xf1, 0xd181, 0xf2, 0xd182, 0xf3, 0xd183, 0xf4, 0xd184,
0xf5, 0xd185, 0xf6, 0xd186, 0xf7, 0xd187, 0xf8, 0xd188,
0xf9, 0xd189, 0xfa, 0xd18a, 0xfb, 0xd18b, 0xfc, 0xd18c,
0xfd, 0xd18d, 0xfe, 0xd18e, 0xff, 0xd18f, 0x96, 0x2d2d,
0xab, 0x3c3c, 0xbb, 0x3c3c, 0x97, 0x2d2d, 0x85, 0x2e2e,
0x8e, 0x3f3f, 0x90, 0x3f3f, 0x92, 0x2727, 0xa0, 0x2020, 0x00 };
0xfd, 0xd18d, 0xfe, 0xd18e, 0xff, 0xd18f, 0x00 };
#endif
int i = 0;