mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
13 lines
145 B
NASM
13 lines
145 B
NASM
CheckBattleScene:
|
|
; Return carry if battle scene is turned off.
|
|
ld a, [wOptions]
|
|
bit BATTLE_SCENE, a
|
|
jr nz, .off
|
|
|
|
and a
|
|
ret
|
|
|
|
.off
|
|
scf
|
|
ret
|