|
@@ -48,7 +48,6 @@ struct TextboxTemplate pdex_boxes[] = {
|
48
|
48
|
|
49
|
49
|
s16 pdex_get_y_offset(s8 n) {
|
50
|
50
|
s8 modOffset = n + pokedex_context->hardware_scroll_amount;
|
51
|
|
- dprintf("mod_offset: %d\n", modOffset);
|
52
|
51
|
if (modOffset < -1) {
|
53
|
52
|
modOffset += 16;
|
54
|
53
|
}
|
|
@@ -62,7 +61,6 @@ s16 pdex_get_y_offset(s8 n) {
|
62
|
61
|
void pdex_main_box_species_fill(s8 n, u16 species, bool seen, bool caught) {
|
63
|
62
|
seen = true;
|
64
|
63
|
s16 y = pdex_get_y_offset(n);
|
65
|
|
- dprintf("trying to print box to y: %d\n", y);
|
66
|
64
|
rboxid_fill_rectangle(TB_MAIN, 0, 0, y, 11 * 8, 16);
|
67
|
65
|
const pchar *stringToPrint = (seen || caught) ? &pokemon_names[species][0] : &pdex_str_empty[0];
|
68
|
66
|
const pchar stringWhitespace[] = {0x0, 0xFF};
|