You've already forked HackerSM64
mirror of
https://github.com/HackerN64/HackerSM64.git
synced 2026-01-21 10:35:32 -08:00
16 lines
431 B
C
16 lines
431 B
C
#ifndef DEBUG_H
|
|
#define DEBUG_H
|
|
|
|
// #define init_cond (CONTROLLER_HELD_INPUT & R_CBUTTONS)
|
|
// #define tex_cond (CONTROLLER_HELD_INPUT & D_CBUTTONS)
|
|
// #define mtx_cond (CONTROLLER_HELD_INPUT & L_TRIG)
|
|
// #define spr_cond (CONTROLLER_HELD_INPUT & U_JPAD)
|
|
// #define deinit_cond (CONTROLLER_HELD_INPUT & U_CBUTTONS)
|
|
#define tex_cond (1)
|
|
#define mtx_cond (1)
|
|
#define spr_cond (1)
|
|
#define init_cond (1)
|
|
#define deinit_cond (1)
|
|
|
|
#endif
|