mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
f_pc mostly linked for Wii/Shield (#3015)
This commit is contained in:
@@ -436,8 +436,15 @@ public:
|
||||
}
|
||||
|
||||
static void onStatus(u8 status) { mStatus |= status; }
|
||||
static void offStatus(u8 status) { mStatus &= ~status; }
|
||||
static bool isStatus(u8 status) { return mStatus & status; }
|
||||
static void offStatus(u8 status) {
|
||||
//TODO: reconcile this
|
||||
#if DEBUG
|
||||
mStatus &= (u8)~status;
|
||||
#else
|
||||
mStatus &= ~status;
|
||||
#endif
|
||||
}
|
||||
static BOOL isStatus(u8 status) { return mStatus & status; }
|
||||
|
||||
static dPa_selectTexEcallBack* getTsuboSelectTexEcallBack(int idx) {
|
||||
return &mTsubo[idx];
|
||||
|
||||
Reference in New Issue
Block a user