pokecrystal-board/engine/battle/check_battle_scene.asm

13 lines
145 B
NASM
Raw Normal View History

2018-06-24 16:09:41 +02:00
CheckBattleScene:
; Return carry if battle scene is turned off.
2018-01-23 17:39:09 -05:00
ld a, [wOptions]
bit BATTLE_SCENE, a
jr nz, .off
and a
ret
.off
scf
ret