diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2020-09-04 19:41:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-04 19:41:18 -0400 |
commit | 8324a355176b2edbc3ad4ab8aec03f3fc7eb0a8c (patch) | |
tree | 121ad567c35ed42d056565758163d7c385152805 /src/frontier_util.c | |
parent | d3e54f72f75622ac6166403abf810419ce2dc62d (diff) | |
parent | a529bcf0b696eaad60806a676397aac7ca9226d1 (diff) |
Merge pull request #1166 from ketsuban/tidying
Tidy up naked functions
Diffstat (limited to 'src/frontier_util.c')
-rw-r--r-- | src/frontier_util.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/frontier_util.c b/src/frontier_util.c index c741a64fe..3e7fecb48 100644 --- a/src/frontier_util.c +++ b/src/frontier_util.c @@ -2539,8 +2539,8 @@ void CreateFrontierBrainPokemon(void) NAKED void CreateFrontierBrainPokemon(void) { - asm_unified("\n\ - push {r4-r7,lr}\n\ + asm_unified( + "push {r4-r7,lr}\n\ mov r7, r10\n\ mov r6, r9\n\ mov r5, r8\n\ @@ -2768,8 +2768,7 @@ _081A4FD0:\n\ pop {r4-r7}\n\ pop {r0}\n\ bx r0\n\ - .pool\n\ -"); + .pool"); } #endif |