diff options
| author | DizzyEggg <jajkodizzy@wp.pl> | 2019-01-24 21:30:19 +0100 |
|---|---|---|
| committer | DizzyEggg <jajkodizzy@wp.pl> | 2019-01-24 21:30:19 +0100 |
| commit | ebfaf3f6bef77808389891c0983a74846257c708 (patch) | |
| tree | a57617e03f5aaeb3979cb20c24a31547f99ed70f /src/script_pokemon_util_80F87D8.c | |
| parent | 23b396dd3fa539c79f000e7c33468ed916821cfc (diff) | |
| parent | dcf79a29ba637713fb9e12512840654b2d5d09ac (diff) | |
Merge branch 'master' into dump
Diffstat (limited to 'src/script_pokemon_util_80F87D8.c')
| -rwxr-xr-x | src/script_pokemon_util_80F87D8.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/script_pokemon_util_80F87D8.c b/src/script_pokemon_util_80F87D8.c index f3eaa7161..cade00b50 100755 --- a/src/script_pokemon_util_80F87D8.c +++ b/src/script_pokemon_util_80F87D8.c @@ -128,18 +128,18 @@ void sub_80F88E8(void) } } -u8 sub_80F8940(void) +u8 CountPlayerContestPaintings(void) { int i; - u8 var0 = 0; + u8 count = 0; for (i = 0; i < 5; i++) { if (gSaveBlock1Ptr->contestWinners[8 + i].species) - var0++; + count++; } - return var0; + return count; } void sub_80F8970(void) |
