diff options
author | YamaArashi <YamaArashi@users.noreply.github.com> | 2016-12-12 19:26:25 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-12 19:26:25 -0800 |
commit | e6c9d717dfad90e5423ebfc6aef53e0b19ef808d (patch) | |
tree | 6d18550f086819f3dee2918f9f04dea22ba9a9b1 /src/pokedex.c | |
parent | 36214115534dd9329b5c02d78595967e671b6caf (diff) | |
parent | 6a07ab586cb3f472657a8572a6b7270ea8751f6a (diff) |
Merge pull request #126 from marijnvdwerf/clean/up-warnings
Increase warnings and turn warnings into errors
Diffstat (limited to 'src/pokedex.c')
-rw-r--r-- | src/pokedex.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/pokedex.c b/src/pokedex.c index aa832a681..54fa5912c 100644 --- a/src/pokedex.c +++ b/src/pokedex.c @@ -170,7 +170,6 @@ void sub_808C0B8(void) void ClearPokedexView(struct PokedexView *pokedexView) { u16 i; - struct UnknownStruct3 *p; for(i = 0; i <= 385; i++) { @@ -1732,7 +1731,6 @@ void sub_808E6BC(void) u8 sub_808E71C(void) { u16 r2; - u16 r3; u16 r4 = gPokedexView->selectedPokemon; if((gMain.newKeys & DPAD_UP) && r4) @@ -2177,8 +2175,6 @@ void sub_808F168(struct Sprite *sprite) if(gPokedexView->menuIsOpen != 0 && gPokedexView->menuY == r1) { - u8 data2; - sprite->invisible = 0; sprite->pos2.y = gPokedexView->menuCursorPos * 16; sprite->pos2.x = gSineTable[(u8)sprite->data2] / 64; |