summaryrefslogtreecommitdiff
path: root/engine/routines/loadoverworldfont.asm
diff options
context:
space:
mode:
authormid-kid <esteve.varela@gmail.com>2018-03-14 13:28:36 +0100
committermid-kid <esteve.varela@gmail.com>2018-03-14 13:28:36 +0100
commit97c511cd2f271252cbc9e9746668081422231ca5 (patch)
tree35ef1cb72e871ef34e2b0011e514edae2b9cbcb7 /engine/routines/loadoverworldfont.asm
parentbaa0dc5a963a79843b37888bcfe1d2dfe833ade9 (diff)
Organize the engine/ directory, take 2
Renamed `game` to `games` and `menu` to `menus`. Moved some functions from `engine/routines/` to their fitting subdirectories. Made two new subdirectories: * engine/rtc: Contains all RTC-related things. Menus, hardware, misc functions. * engine/items: Contains all item-related things. Pack, item effects, other item handlers.
Diffstat (limited to 'engine/routines/loadoverworldfont.asm')
-rw-r--r--engine/routines/loadoverworldfont.asm17
1 files changed, 0 insertions, 17 deletions
diff --git a/engine/routines/loadoverworldfont.asm b/engine/routines/loadoverworldfont.asm
deleted file mode 100644
index f23f01c4e..000000000
--- a/engine/routines/loadoverworldfont.asm
+++ /dev/null
@@ -1,17 +0,0 @@
-LoadOverworldFont:: ; 106594
- ld de, .OverworldFontGFX
- ld hl, vTiles1
- lb bc, BANK(.OverworldFontGFX), $80
- call Get2bpp
- ld de, .OverworldFontSpaceGFX
- ld hl, vTiles2 tile " "
- lb bc, BANK(.OverworldFontSpaceGFX), 1
- call Get2bpp
- ret
-; 1065ad
-
-.OverworldFontGFX:
-INCBIN "gfx/font/overworld.2bpp"
-
-.OverworldFontSpaceGFX:
-INCBIN "gfx/font/overworld_space.2bpp"