mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 15:01:32 -04:00
874a75f456
* match function * major cleanups * rename switch functions * use graph_alloc to fix fake matches * more documentation * more matches, lots of changes * lots more work * format * Update z_scene_proc.c * very hard lagrange interpolation function OK! * remove any remaining * documentation done, only two functions left * a few more things * one function left! * document another oot leftover * last function decompiled, not matched yet * scene_proc complete * start work on z_scene * done with z_scene * remove unessecary typedefs * fix some things to remove warnings * Add z_scene_table and decomp data * Delete ctx.c * add draw cfg enum * cleanup * most scene table functions done * done for now * all scene files done * Update include/z64scene.h Co-authored-by: Anghelo Carvajal <anghelo.carvajal.14@sansano.usm.cl> * add missing macros * fix some renames * scene texture file rename * added temporary structs so it still builds * more structs * even more old structs * fix boyo * should fix compile error * lets hope nothing broke * ub comment back Co-authored-by: Anghelo Carvajal <anghelo.carvajal.14@sansano.usm.cl>
15 lines
202 B
C
15 lines
202 B
C
#ifndef _STDBOOL
|
|
#define _STDBOOL
|
|
|
|
#define __bool_true_false_are_defined 1
|
|
|
|
#ifndef __cplusplus
|
|
|
|
#define bool u32
|
|
#define false 0
|
|
#define true 1
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* _STDBOOL */
|