mirror of
https://github.com/zeldaret/mm.git
synced 2024-11-23 04:49:45 +00:00
6541532abb
* z64play.h * Move macros, functions and variables to header * cleanup * Reduce needed headers on z_collision_check * Change play functions to take PlayState * Move `Actor_ProcessInitChain` to `ichain.h` * format * Update src/code/z_play.c Co-authored-by: Derek Hensley <hensley.derek58@gmail.com> * Add macros.h to sys_math3d.c * Rename SequenceContext to SceneSequences --------- Co-authored-by: Derek Hensley <hensley.derek58@gmail.com>
10 lines
404 B
Python
10 lines
404 B
Python
#!/usr/bin/env python3
|
|
|
|
def apply(config, args):
|
|
config['baseimg'] = 'baseroms/n64-us/baserom-decompressed.z64'
|
|
config['myimg'] = 'build/n64-us/mm-n64-us.z64'
|
|
config['mapfile'] = 'build/n64-us/mm-n64-us.map'
|
|
config['source_directories'] = ['./src','./include']
|
|
config['objdump_flags'] = ['-M','reg-names=32']
|
|
config['makeflags'] = ['KEEP_MDEBUG=1', 'WERROR=0', 'OBJDUMP_BUILD=0']
|