sotn-decomp/tools/splat_ext/ci4.py
Luciano Ciccariello 8abb09e3ff
Update splat to 0.24.4 (#1112)
Still work in progress. I removed splat as a submodule and started using
it as a pip package instead. Everything is matching but the memory card
icons part in both DRA and SEL. I still have no idea what the issue is.
Once this PR is good to be merged, we can get rid of the splat fork too.
2024-06-12 18:50:32 +01:00

8 lines
199 B
Python

from splat.segtypes.n64.ci4 import N64SegCi4
class PSXSegCi4(N64SegCi4):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.n64img.little_endian = True