mirror of
https://github.com/n64decomp/mk64
synced 2026-05-23 22:45:21 -04:00
17a6f4bb3d
* update clang and add action * try clang on course folder only * forget two file * Update course_displaylists.inc.c * forget few other file * Update course_vertices.inc.c * format all code while get it match * second pass * format other dir * disable clang format on bad ido code * fix some tabulation * revert format on tool dir * Update clang-format.yml * ignore gbi.h * add some read me instruction * fix error * format and fixing error * Update README.md --------- Co-authored-by: MegaMech <MegaMech@users.noreply.github.com>
25 lines
635 B
C
25 lines
635 B
C
#include <ultra64.h>
|
|
#include <macros.h>
|
|
#include <common_structs.h>
|
|
|
|
/*
|
|
* This file is required for data alignment
|
|
*
|
|
*/
|
|
|
|
StaffGhost d_mario_raceway_staff_ghost[] = {
|
|
#include "courses/mario_raceway/staff_ghost.inc.c"
|
|
};
|
|
|
|
StaffGhost d_luigi_raceway_staff_ghost[1046] = {
|
|
#include "courses/luigi_raceway/staff_ghost.inc.c"
|
|
};
|
|
|
|
StaffGhost d_royal_raceway_staff_ghost[] = {
|
|
#include "courses/royal_raceway/staff_ghost.inc.c"
|
|
};
|
|
|
|
// Unknown data. Perhaps colour or lights
|
|
s32 D_0F4FCAD0[] = { 0x00000000, 0xc8c8c8c8, 0xc8c80000, 0x00007b39, 0x6f6f6f6f,
|
|
0x6f6f6f6f, 0x3f7b0000, 0x0000c8c8, 0xc8c8c8c8, 0xc8000000 };
|