mirror of
https://github.com/Xeeynamo/sotn-decomp.git
synced 2024-11-27 06:50:35 +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.
10 lines
216 B
Python
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
|