core1/done/audio/n_seqplayer.c done
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
#ifndef ENUMS_H
|
||||
#define ENUMS_H
|
||||
|
||||
#define SPRITE_TYPE_CI4 (1 << 0)
|
||||
#define SPRITE_TYPE_CI8 (1 << 2)
|
||||
#define SPRITE_TYPE_I4 (1 << 5)
|
||||
#define SPRITE_TYPE_I8 (1 << 6)
|
||||
#define SPRITE_TYPE_IA4 (1 << 7)
|
||||
#define SPRITE_TYPE_IA8 (1 << 8)
|
||||
#define SPRITE_TYPE_UNKNOWN_200 (1 << 9)
|
||||
#define SPRITE_TYPE_RGBA16 (1 << 10)
|
||||
#define SPRITE_TYPE_CI4 (1 << 0) //0x001
|
||||
#define SPRITE_TYPE_CI8 (1 << 2) //0x004
|
||||
#define SPRITE_TYPE_I4 (1 << 5) //0x020
|
||||
#define SPRITE_TYPE_I8 (1 << 6) //0x040
|
||||
#define SPRITE_TYPE_IA4 (1 << 7) //0x080
|
||||
#define SPRITE_TYPE_IA8 (1 << 8) //0x100
|
||||
#define SPRITE_TYPE_UNKNOWN_200 (1 << 9) //0x200
|
||||
#define SPRITE_TYPE_RGBA16 (1 << 10) ////0x400
|
||||
#define SPRITE_TYPE_RGBA32 (1 << 11)
|
||||
|
||||
enum bkprog_e{
|
||||
@@ -3055,7 +3055,7 @@ enum asset_e
|
||||
ASSET_543_MODEL_JINJO_STATUE_BASE = 0x543,
|
||||
ASSET_544_MODEL_JINJONATOR_STATUE_BASE,
|
||||
ASSET_545_MODEL_STONE_JINJO,
|
||||
ASSET_546_MODEL_GRUNTY_SPELL_BARRIER = 0x546,
|
||||
ASSET_546_MODEL_GRUNTY_SPELL_BARRIER,
|
||||
// 547 GL Blue Egg Refill Pillow
|
||||
// 548 GL Red Feather Refill Pillow
|
||||
// 549 GL Gold Feather Refill Pillow
|
||||
|
29
include/file_and_line.h
Normal file
29
include/file_and_line.h
Normal file
@@ -0,0 +1,29 @@
|
||||
#ifndef _FILE_AND_LINE_H_
|
||||
#define _FILE_AND_LINE_H_
|
||||
|
||||
extern void func_8033F000(const char *, const char *, int);
|
||||
|
||||
|
||||
#ifdef NONMATCHING
|
||||
#define LINE(line_num) __LINE__
|
||||
#define FILE(file_name) __FILE__
|
||||
#define matching_assert(EX, F, L) assert(EX)
|
||||
#else
|
||||
#define LINE(line_num) line_num
|
||||
#define FILE(file_name) "file_name"
|
||||
#ifdef __ANSI_CPP__
|
||||
#define FILE(file_name) # file_name
|
||||
#else
|
||||
#define FILE(file_name) "file_name"
|
||||
#endif
|
||||
#define matching_assert(EX, F, L) assert(EX)
|
||||
#ifdef __ANSI_CPP__
|
||||
#define matching_assert(EX, F, L) ((EX)?((void)0):func_8033F000( # EX , # F, L))
|
||||
#else
|
||||
#define matching_assert(EX, F , L) ((EX)?((void)0):func_8033F000("EX", "F", L))
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user