summaryrefslogtreecommitdiff
path: root/home/random.asm
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2014-02-01 20:26:39 -0500
committeryenatch <yenatch@gmail.com>2014-02-01 20:26:39 -0500
commitcf2acc100193f599b4521a961c9bff6a78be8217 (patch)
tree8d79a8a8f7f192ecabdd7a6c9fbfcdab7b5dffb8 /home/random.asm
parentadb3b29b4dcd8330df1b4cbe7ff24cd9aa614c14 (diff)
Use :: to export labels between objects.
This fixes the build.
Diffstat (limited to 'home/random.asm')
-rw-r--r--home/random.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/home/random.asm b/home/random.asm
index 0f46da9e4..100b4d37b 100644
--- a/home/random.asm
+++ b/home/random.asm
@@ -1,4 +1,4 @@
-Random: ; 2f8c
+Random:: ; 2f8c
; A simple hardware-based random number generator (RNG).
; Two random numbers are generated by adding and subtracting
@@ -29,7 +29,7 @@ Random: ; 2f8c
ret
; 2f9f
-BattleRandom: ; 2f9f
+BattleRandom:: ; 2f9f
; _BattleRandom lives in another bank.
; It handles all RNG calls in the battle engine, allowing
@@ -50,7 +50,7 @@ BattleRandom: ; 2f9f
; 2fb1
-Function2fb1: ; 2fb1
+Function2fb1:: ; 2fb1
push bc
ld c, a
xor a