mirror of
https://github.com/n64decomp/mk64
synced 2026-06-02 01:30:21 -04:00
fcbd54ff8b
* Proper linkage for textures in course display lists * Does not use new_extract_assets. This tool is small and easy to maintain on its own. * Auto generate the linkonly files Signed-off-by: Taggerung <tyler.taggerung@email.com>
12 lines
329 B
C
12 lines
329 B
C
#include <PR/ultratypes.h>
|
|
#include "course_offsets.h"
|
|
|
|
extern u8 gTextureGrayCobblestone[];
|
|
extern u8 gTexture642978[];
|
|
|
|
const course_texture double_deck_textures[] = {
|
|
{gTextureGrayCobblestone, 0x010C, 0x0800, 0x0},
|
|
{gTexture642978, 0x010D, 0x0800, 0x0},
|
|
{0x00000000, 0x0000, 0x0000, 0x0},
|
|
};
|