mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 12:02:30 +01:00
* add old star rod dirs to gitignore
* remove something from mapfs to introduce bug
* fix build
See https://github.com/pmret/papermario/issues/1170
* Revert "remove something from mapfs to introduce bug"
This reverts commit 4a3927866e
.
This commit is contained in:
parent
6a2ad7e1b9
commit
e1176acfed
9
.gitignore
vendored
9
.gitignore
vendored
@ -61,6 +61,15 @@ build/
|
|||||||
dump
|
dump
|
||||||
*.backup
|
*.backup
|
||||||
crash.xml
|
crash.xml
|
||||||
|
/audio/*
|
||||||
|
/sprite/*
|
||||||
|
/battle/*
|
||||||
|
/globals/*
|
||||||
|
/map/*
|
||||||
|
/world/*
|
||||||
|
/image/*
|
||||||
|
/strings/*
|
||||||
|
/res/*
|
||||||
|
|
||||||
/tools/Yay0compress
|
/tools/Yay0compress
|
||||||
/tools/n64crc
|
/tools/n64crc
|
||||||
|
@ -130,7 +130,12 @@ class N64SegPm_map_data(N64Segment):
|
|||||||
if name == "end_data":
|
if name == "end_data":
|
||||||
break
|
break
|
||||||
|
|
||||||
assert self.files.get(name) is not None
|
if self.files.get(name) is None:
|
||||||
|
# TODO
|
||||||
|
# https://github.com/pmret/papermario/issues/1170
|
||||||
|
self.warn(f"skipping unknown file {name}")
|
||||||
|
asset_idx += 1
|
||||||
|
continue
|
||||||
|
|
||||||
if offset == 0:
|
if offset == 0:
|
||||||
path = None
|
path = None
|
||||||
|
Loading…
Reference in New Issue
Block a user