mirror of
https://github.com/Xeeynamo/sotn-decomp.git
synced 2024-11-23 13:09:44 +00:00
8abb09e3ff
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.
8 lines
199 B
Python
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
|