mirror of
https://github.com/n64decomp/mk64
synced 2026-07-01 10:58:50 -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>
18 lines
559 B
C
18 lines
559 B
C
#include <PR/ultratypes.h>
|
|
#include "course_offsets.h"
|
|
|
|
extern u8 gTextureStarOutline[];
|
|
extern u8 gTexture67A1B8[];
|
|
extern u8 gTextureCheckerboardBlackWhite[];
|
|
extern u8 gTexture662A34[];
|
|
extern u8 gTextureRainbow[];
|
|
|
|
const course_texture rainbow_road_textures[] = {
|
|
{ gTextureStarOutline, 0x037A, 0x0800, 0x0 },
|
|
{ gTexture67A1B8, 0x01B7, 0x0800, 0x0 },
|
|
{ gTextureCheckerboardBlackWhite, 0x0107, 0x0800, 0x0 },
|
|
{ gTexture662A34, 0x0106, 0x0800, 0x0 },
|
|
{ gTextureRainbow, 0x025D, 0x1000, 0x0 },
|
|
{ 0x00000000, 0x0000, 0x0000, 0x0 },
|
|
};
|