f_pc mostly linked for Wii/Shield (#3015)

This commit is contained in:
Max Roncace
2026-01-06 04:45:15 -08:00
committed by GitHub
parent 3679e7abab
commit fd863582d6
64 changed files with 363 additions and 336 deletions
+9 -2
View File
@@ -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];