sotn-decomp/tools/splat_ext/i4.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

10 lines
216 B
Python

import n64img.image
from splat.segtypes.n64.i4 import N64SegI4
class PSXSegI4(N64SegI4):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.n64img.little_endian = True