summaryrefslogtreecommitdiff
path: root/engine/types.asm
diff options
context:
space:
mode:
authorRemy Oukaour <remy.oukaour@gmail.com>2018-01-21 17:45:56 -0500
committerRemy Oukaour <remy.oukaour@gmail.com>2018-01-21 17:45:56 -0500
commit5e4fa42fa7e2405760efc77f8c2e7167e67990ac (patch)
tree5af3efb79851bd746eb7a8d3a14a8dcd14abaf2b /engine/types.asm
parent5db31feba93b10a2d629cf88a9ca7096d4b1c9ae (diff)
Unrelated routine gets its own file
Diffstat (limited to 'engine/types.asm')
-rw-r--r--engine/types.asm23
1 files changed, 0 insertions, 23 deletions
diff --git a/engine/types.asm b/engine/types.asm
index e0235aff1..931e98b92 100644
--- a/engine/types.asm
+++ b/engine/types.asm
@@ -97,26 +97,3 @@ GetTypeName: ; 50964
INCLUDE "data/types/names.asm"
-
-
-Unreferenced_GetGen1TrainerClassName: ; 50a28
- ld hl, Gen1TrainerClassNames
- ld a, [TrainerClass]
- dec a
- ld c, a
- ld b, 0
- add hl, bc
- add hl, bc
- ld a, [hli]
- ld h, [hl]
- ld l, a
- ld de, StringBuffer1
-.copy
- ld a, [hli]
- ld [de], a
- inc de
- cp "@"
- jr nz, .copy
- ret
-
-INCLUDE "data/unused/gen_1_trainer_names.asm"