diff options
author | Marijn van der Werf <marijn.vanderwerf@gmail.com> | 2017-01-17 14:38:44 +0100 |
---|---|---|
committer | Marijn van der Werf <marijn.vanderwerf@gmail.com> | 2017-01-17 15:00:08 +0100 |
commit | 801877553db80267a62c0c3c0b2805b6716d1ef9 (patch) | |
tree | fef947af4f6f4ff2cdc6d33e3678e87ecb2e1ae0 /src/heal_location.c | |
parent | c9722602cb47eb5b6ecbccddf13df5f286a8ef7b (diff) |
Remove trailing whitespace
Diffstat (limited to 'src/heal_location.c')
-rw-r--r-- | src/heal_location.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/heal_location.c b/src/heal_location.c index 13bb125b6..73d6ef65a 100644 --- a/src/heal_location.c +++ b/src/heal_location.c @@ -8,7 +8,7 @@ extern const struct HealLocation gHealLocations[]; u32 GetHealLocationIndexByMap(u16 mapGroup, u16 mapNum) { u32 i; - + for (i = 0; i < NUM_HEAL_LOCATIONS; i++) { if(gHealLocations[i].group == mapGroup && gHealLocations[i].map == mapNum) @@ -20,7 +20,7 @@ u32 GetHealLocationIndexByMap(u16 mapGroup, u16 mapNum) const struct HealLocation *GetHealLocationByMap(u16 mapGroup, u16 mapNum) { u32 index = GetHealLocationIndexByMap(mapGroup, mapNum); - + if (index == 0) return NULL; else |