1
0
mirror of https://github.com/Escartem/AnimeWwise.git synced 2026-06-05 07:50:23 +08:00

fixed zzz map prefixes

This commit is contained in:
Escartem
2024-07-19 23:05:55 +02:00
parent a54fb25c7a
commit 0795e8f717
2 changed files with 1 additions and 4 deletions

View File

@@ -108,10 +108,7 @@ class Mapper:
name_length = reader.ReadUInt8()
prefix = reader.ReadBytes(1)
if prefix != b"\x00":
prefix = prefixes[prefix]
else:
prefix = ""
prefix = prefixes[prefix]
name = raw(name_length)
name = f"{prefix}{name}"