diff --git a/src/fishing.c b/src/fishing.c index 6d511b7fb8..9744ac87cb 100644 --- a/src/fishing.c +++ b/src/fishing.c @@ -518,7 +518,6 @@ static u32 CalculateFishingBiteOdds(u32 rod, bool32 isStickyHold) odds *= 2; odds = min(100, odds); - DebugPrintf("Fishing odds: %d", odds); return odds; } @@ -646,7 +645,6 @@ u32 CalculateChainFishingShinyRolls(void) if (!I_FISHING_CHAIN || !gIsFishingEncounter) return 0; u32 a = 2 * min(gChainFishingDexNavStreak, FISHING_CHAIN_SHINY_STREAK_MAX); - DebugPrintf("Total Shiny Rolls %d", a); return a; } diff --git a/src/sprite.c b/src/sprite.c index caa1aa52c6..2ddaed8094 100644 --- a/src/sprite.c +++ b/src/sprite.c @@ -1464,7 +1464,6 @@ static u16 LoadSpriteSheetWithOffset(const struct SpriteSheet *sheet, u32 offset #if T_SHOULD_RUN_MOVE_ANIM gLoadFail = TRUE; #endif // T_SHOULD_RUN_MOVE_ANIM - DebugPrintf("Tile: %u", sheet->tag); return 0; } else