mirror of
https://github.com/pmret/papermario.git
synced 2024-11-18 00:42:34 +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
|
||||
*.backup
|
||||
crash.xml
|
||||
/audio/*
|
||||
/sprite/*
|
||||
/battle/*
|
||||
/globals/*
|
||||
/map/*
|
||||
/world/*
|
||||
/image/*
|
||||
/strings/*
|
||||
/res/*
|
||||
|
||||
/tools/Yay0compress
|
||||
/tools/n64crc
|
||||
|
@ -130,7 +130,12 @@ class N64SegPm_map_data(N64Segment):
|
||||
if name == "end_data":
|
||||
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:
|
||||
path = None
|
||||
|
Loading…
Reference in New Issue
Block a user