Fix snake_case filenames

Renamed a bunch of files, most of them one-off functions, to better fit
the general snake_case naming scheme. Also renamed some awfully long filenames.
This commit is contained in:
mid-kid
2018-04-04 22:26:07 +02:00
parent 81fff9bb80
commit d3cc861d33
32 changed files with 114 additions and 114 deletions

View File

@@ -0,0 +1,20 @@
LevelUpHappinessMod: ; 2709e
ld a, [wCurPartyMon]
ld hl, wPartyMon1CaughtLocation
call GetPartyLocation
ld a, [hl]
and $7f
ld d, a
ld a, [wMapGroup]
ld b, a
ld a, [wMapNumber]
ld c, a
call GetWorldMapLocation
cp d
ld c, HAPPINESS_GAINLEVEL
jr nz, .ok
ld c, HAPPINESS_GAINLEVELATHOME
.ok
callfar ChangeHappiness
ret