summaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
authorluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2018-07-03 14:10:28 -0400
committerluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2018-07-03 14:10:28 -0400
commitf3f0e711bf4f4205fd29f2b448c93ff5597507e5 (patch)
treed2c66166ce7f057cc1bd29e67cdcf18b470a7496 /home
parent9824a5762008d083ea149af477a3093b89d269a7 (diff)
Fix uncaught build errors.
Diffstat (limited to 'home')
-rwxr-xr-xhome/music.asm26
1 files changed, 0 insertions, 26 deletions
diff --git a/home/music.asm b/home/music.asm
deleted file mode 100755
index 4ad9d06..0000000
--- a/home/music.asm
+++ /dev/null
@@ -1,26 +0,0 @@
-SECTION "PlayMapMusic", ROM0[$3de1]
-
-PlayMapMusic: ; 00:3de1
- push hl
- push de
- push bc
- push af
- call GetMapMusic
- ld a, [wMapMusic]
- cp e
- jr z, .dont_play
- push de
- ld de, 0
- call PlayMusic
- call DelayFrame
- pop de
- ld a, e
- ld [wMapMusic], a
- call PlayMusic
-
-.dont_play
- pop af
- pop bc
- pop de
- pop hl
- ret