mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-10 19:20:13 +00:00
d674dad3da
* Improve compression * Format * Typo * Use Python assignment expression in tools/dmadata.py Co-authored-by: Dragorn421 <Dragorn421@users.noreply.github.com> * Review decompress_baserom.py * Replace DEFINE_DEBUG_SCENE with CPP defines * Pass is_zlib_compressed instead of version * Reword NOLOAD comment in write_compress_ranges * Remove redundant comment --------- Co-authored-by: Dragorn421 <Dragorn421@users.noreply.github.com>
9 lines
249 B
C
9 lines
249 B
C
/**
|
|
* Select dmadata table for version
|
|
*/
|
|
#if !OOT_DEBUG || NON_MATCHING
|
|
// For retail versions and non-matching builds, dmadata is generated from the specfile segments
|
|
#include "dmadata_table_spec.h"
|
|
#else
|
|
#include "dmadata_table_mqdbg.h"
|
|
#endif
|