mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-14 03:44:34 +00:00
Set up build system for ique-cn (#2382)
* Set up build system for ique-cn * Fix size of fbdemo_circle assets * Treat iQue as NTSC and Use "NES" for Chinese text * Revert z_kanfont
This commit is contained in:
parent
81df2d4ba3
commit
471fe51c82
34 changed files with 3037 additions and 72 deletions
|
@ -23,8 +23,8 @@ class VersionConfig:
|
|||
checksums: list[str]
|
||||
# ROM offset to start of DMA table
|
||||
dmadata_start: int
|
||||
# Whether the languages are PAL (EN/DE/FR) or not (JP/EN)
|
||||
text_lang_pal: bool
|
||||
# "NTSC" (JP/EN), "PAL" (EN/DE/FR), or "CN" (JP/CN)
|
||||
text_lang: str
|
||||
# DMA segment information, in ROM order
|
||||
dmadata_segments: OrderedDict[str, SegmentInfo]
|
||||
# ROM pieces that are copied directly into the build with .incbin
|
||||
|
@ -92,7 +92,7 @@ def load_version_config(version: str) -> VersionConfig:
|
|||
version=version,
|
||||
checksums=config.get("checksums", ["checksum"]),
|
||||
dmadata_start=config["dmadata_start"],
|
||||
text_lang_pal=config["text_lang_pal"],
|
||||
text_lang=config["text_lang"],
|
||||
dmadata_segments=load_dmadata_segments(version),
|
||||
incbins=incbins,
|
||||
variables=config["variables"],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue