don't need prints any more

This commit is contained in:
Pawkkie 2025-05-08 14:52:13 -04:00
parent b48d0c387d
commit 04278dbfac
2 changed files with 1 additions and 2 deletions

View File

@ -116,6 +116,5 @@ void Ai_UpdateSwitchInData(u32 battler);
void Ai_UpdateFaintData(u32 battler);
void SetAiLogicDataForTurn(struct AiLogicData *aiData);
void ResetDynamicAiFunc(void);
u32 BattleAI_PredictMove(u32 battler, u32 opposingBattler);
#endif // GUARD_BATTLE_AI_MAIN_H

View File

@ -6,7 +6,7 @@
// still has them in the ROM. This is because the developers forgot
// to define NDEBUG before release, however this has been changed as
// Ruby's actual debug build does not use the AGBPrint features.
// #define NDEBUG
#define NDEBUG
// To enable printf debugging, comment out "#define NDEBUG". This allows
// the various AGBPrint functions to be used. (See include/gba/isagbprint.h).