You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
Merge branch 'master' of https://github.com/xCrystal/pokecrystal (resolve PR #459)
# Conflicts: # data/items/descriptions.asm # data/sprite_anims/framesets.asm # engine/crystal_colors.asm # engine/events/kurt.asm # engine/events/special.asm # engine/events/std_scripts.asm # engine/events_3.asm # engine/item_effects.asm # engine/namingscreen.asm # engine/scripting.asm # engine/stats_screen.asm # engine/trade_animation.asm # home/audio.asm # main.asm # maps/BattleTower1F.asm # maps/BattleTowerBattleRoom.asm # maps/BurnedTowerB1F.asm # maps/ElmsLab.asm # maps/GoldenrodDeptStore5F.asm # maps/GoldenrodUnderground.asm # maps/HallOfFame.asm # maps/MahoganyTown.asm # maps/ManiasHouse.asm # maps/MobileBattleRoom.asm # maps/MobileTradeRoomMobile.asm # maps/RadioTower2F.asm # maps/Route35NationalParkGate.asm # maps/Route36NationalParkGate.asm # maps/Route39Farmhouse.asm # tilesets/palette_maps.asm
This commit is contained in:
10
gfx/font.asm
10
gfx/font.asm
@@ -83,18 +83,18 @@ INCLUDE "gfx/footprints.asm"
|
||||
|
||||
; This and the following two functions are unreferenced.
|
||||
; Debug, perhaps?
|
||||
Unknown_fb434:
|
||||
Unreferenced_fb434:
|
||||
db 0
|
||||
|
||||
Functionfb435: ; 4b435
|
||||
ld a, [Unknown_fb434]
|
||||
Unreferenced_Functionfb435: ; 4b435
|
||||
ld a, [Unreferenced_fb434]
|
||||
and a
|
||||
jp nz, Get1bpp_2
|
||||
jp Get1bpp
|
||||
; fb43f
|
||||
|
||||
Functionfb43f: ; fb43f
|
||||
ld a, [Unknown_fb434]
|
||||
Unreferenced_Functionfb43f: ; fb43f
|
||||
ld a, [Unreferenced_fb434]
|
||||
and a
|
||||
jp nz, Get2bpp_2
|
||||
jp Get2bpp
|
||||
|
@@ -1,4 +1,4 @@
|
||||
GetUnownLetter: ; 51040
|
||||
Predef_GetUnownLetter: ; 51040
|
||||
; Return Unown letter in UnownLetter based on DVs at hl
|
||||
|
||||
; Take the middle 2 bits of each DV and place them in order:
|
||||
@@ -48,7 +48,7 @@ GetUnownLetter: ; 51040
|
||||
ld [UnownLetter], a
|
||||
ret
|
||||
|
||||
GetMonFrontpic: ; 51077
|
||||
Predef_GetMonFrontpic: ; 51077
|
||||
ld a, [CurPartySpecies]
|
||||
ld [CurSpecies], a
|
||||
call IsAPokemon
|
||||
@@ -60,7 +60,7 @@ GetMonFrontpic: ; 51077
|
||||
ld [rSVBK], a
|
||||
ret
|
||||
|
||||
GetAnimatedFrontpicPredef: ; 5108b
|
||||
Predef_GetAnimatedFrontpic: ; 5108b
|
||||
ld a, [CurPartySpecies]
|
||||
ld [CurSpecies], a
|
||||
call IsAPokemon
|
||||
@@ -195,7 +195,7 @@ LoadFrontpicTiles: ; 5114f
|
||||
jr nz, .loop
|
||||
ret
|
||||
|
||||
GetMonBackpic: ; 5116c
|
||||
Predef_GetMonBackpic: ; 5116c
|
||||
ld a, [CurPartySpecies]
|
||||
call IsAPokemon
|
||||
ret c
|
||||
@@ -311,7 +311,7 @@ Function511ec: ; 511ec
|
||||
call FarDecompress
|
||||
ret
|
||||
|
||||
GetTrainerPic: ; 5120d
|
||||
Predef_GetTrainerPic: ; 5120d
|
||||
ld a, [TrainerClass]
|
||||
and a
|
||||
ret z
|
||||
@@ -353,7 +353,7 @@ GetTrainerPic: ; 5120d
|
||||
ld [hBGMapMode], a
|
||||
ret
|
||||
|
||||
DecompressPredef: ; 5125d
|
||||
Predef_Decompress: ; 5125d
|
||||
; Decompress lz data from b:hl to scratch space at 6:d000, then copy it to address de.
|
||||
|
||||
ld a, [rSVBK]
|
||||
|
@@ -140,3 +140,10 @@ INCLUDE "gfx/tilesets/battle_tower_palette_map.asm"
|
||||
TilesetBattleTowerOutsidePalMap: ; 0x4cd95
|
||||
INCLUDE "gfx/tilesets/battle_tower_outside_palette_map.asm"
|
||||
; 0x4ce05
|
||||
|
||||
; unused
|
||||
; 0x4ce05
|
||||
rept 26
|
||||
db $06
|
||||
endr
|
||||
; 0x4ce1f
|
||||
|
Reference in New Issue
Block a user