diff options
Diffstat (limited to 'src/heal_location.c')
-rw-r--r-- | src/heal_location.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/heal_location.c b/src/heal_location.c index 73d6ef65a..a780ee470 100644 --- a/src/heal_location.c +++ b/src/heal_location.c @@ -11,7 +11,7 @@ u32 GetHealLocationIndexByMap(u16 mapGroup, u16 mapNum) for (i = 0; i < NUM_HEAL_LOCATIONS; i++) { - if(gHealLocations[i].group == mapGroup && gHealLocations[i].map == mapNum) + if (gHealLocations[i].group == mapGroup && gHealLocations[i].map == mapNum) return i + 1; } return 0; |