mirror of https://github.com/pmret/papermario.git
extension updates for splat update
This commit is contained in:
parent
a1f88cf959
commit
f274ebe21a
|
|
@ -7,7 +7,8 @@ options:
|
|||
ld_o_replace_extension: False
|
||||
ld_addrs_header: include/ld_addrs.h
|
||||
extensions: splat_ext
|
||||
symbol_addrs: tools/symbol_addrs.txt
|
||||
symbol_addrs_path: tools/symbol_addrs.txt
|
||||
platform: n64
|
||||
segments:
|
||||
- name: header
|
||||
type: header
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
import os
|
||||
from segtypes.segment import N64Segment
|
||||
from segtypes.n64.segment import N64Segment
|
||||
from pathlib import Path
|
||||
from util import Yay0decompress
|
||||
from util.n64 import Yay0decompress
|
||||
|
||||
|
||||
def decode_null_terminated_ascii(data):
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
from segtypes.segment import N64Segment
|
||||
from segtypes.n64.segment import N64Segment
|
||||
from pathlib import Path
|
||||
|
||||
CHARSET = {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
from segtypes.segment import N64Segment
|
||||
from segtypes.n64.segment import N64Segment
|
||||
from pathlib import Path
|
||||
from util import Yay0decompress
|
||||
from util.n64 import Yay0decompress
|
||||
from util.iter import iter_in_groups
|
||||
from util.color import unpack_color
|
||||
import png
|
||||
|
|
|
|||
Loading…
Reference in New Issue