You've already forked Microtransactions64
mirror of
https://github.com/Print-and-Panic/Microtransactions64.git
synced 2026-01-21 10:17:19 -08:00
Only extract assets from JP/EU/SH roms if they exist
This commit is contained in:
20
Makefile
20
Makefile
@@ -323,7 +323,25 @@ ifeq ($(filter clean distclean print-%,$(MAKECMDGOALS)),)
|
|||||||
ifeq ($(NOEXTRACT),0)
|
ifeq ($(NOEXTRACT),0)
|
||||||
DUMMY != $(PYTHON) extract_assets.py $(VERSION) >&2 || echo FAIL
|
DUMMY != $(PYTHON) extract_assets.py $(VERSION) >&2 || echo FAIL
|
||||||
ifeq ($(DUMMY),FAIL)
|
ifeq ($(DUMMY),FAIL)
|
||||||
$(error Failed to extract assets)
|
$(error Failed to extract assets from US ROM)
|
||||||
|
endif
|
||||||
|
ifneq (,$(wildcard baserom.jp.z64))
|
||||||
|
DUMMY != $(PYTHON) extract_assets.py jp >&2 || echo FAIL
|
||||||
|
ifeq ($(DUMMY),FAIL)
|
||||||
|
$(error Failed to extract assets from JP ROM)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
ifneq (,$(wildcard baserom.eu.z64))
|
||||||
|
DUMMY != $(PYTHON) extract_assets.py eu >&2 || echo FAIL
|
||||||
|
ifeq ($(DUMMY),FAIL)
|
||||||
|
$(error Failed to extract assets from EU ROM)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
ifneq (,$(wildcard baserom.sh.z64))
|
||||||
|
DUMMY != $(PYTHON) extract_assets.py sh >&2 || echo FAIL
|
||||||
|
ifeq ($(DUMMY),FAIL)
|
||||||
|
$(error Failed to extract assets from SH ROM)
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|||||||
@@ -58,7 +58,7 @@
|
|||||||
|
|
||||||
// Include the English characters that were missing from US segment2
|
// Include the English characters that were missing from US segment2
|
||||||
// J, Q, V, X, Z, ¨, !, !!, ?, &, %, ., and the beta key.
|
// J, Q, V, X, Z, ¨, !, !!, ?, &, %, ., and the beta key.
|
||||||
// [MAKE SURE TO ALSO BUILD FROM JP/SH AND EU TO OBTAIN THE ASSETS]
|
// [MAKE SURE TO HAVE EU AND JP/SH BASEROMS TO OBTAIN THE ASSETS]
|
||||||
// If this is disabled, backup assets will be used.
|
// If this is disabled, backup assets will be used.
|
||||||
// #define COMPLETE_EN_US_SEGMENT2
|
// #define COMPLETE_EN_US_SEGMENT2
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user