From 4989c6169d20e1e290b72256c42014dc88e68fc7 Mon Sep 17 00:00:00 2001 From: TheXaman Date: Wed, 6 Oct 2021 16:39:10 +0200 Subject: [PATCH] fixed evo screen "dash overwriting text above" problem, thanks to trikop for showing me --- src/pokedex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pokedex.c b/src/pokedex.c index 863578c0a8..686e40ddcf 100644 --- a/src/pokedex.c +++ b/src/pokedex.c @@ -7521,7 +7521,7 @@ static void CreateCaughtBallEvolutionScreen(u16 targetSpecies, u8 x, u8 y, u16 u BlitBitmapToWindow(0, sCaughtBall_Gfx, x, y, 8, 16); else { - FillWindowPixelRect(0, PIXEL_FILL(0), x, y, 8, 16); + //FillWindowPixelRect(0, PIXEL_FILL(0), x, y, 8, 16); //not sure why this was even here PrintInfoScreenTextSmall(gText_OneDash, x+1, y); } }