diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-06 12:28:31 -0400 | 
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-06 12:28:31 -0400 | 
| commit | 8a79315635ee9ebb6eed5c9648fe89746085d0b1 (patch) | |
| tree | e4db65c6ced277be38f2cb0bfc85cdc39a90208e /engine | |
| parent | d08eb862339c29ffe387f661121ac4dfe79c74ab (diff) | |
Capitalize rgbds control structures (EQU/EQUS, IF/ELIF/ELSE/ENDC, REPT/ENDR, MACRO/ENDM, etc)
Diffstat (limited to 'engine')
| -rwxr-xr-x | engine/overworld/healing_machine.asm | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/engine/overworld/healing_machine.asm b/engine/overworld/healing_machine.asm index 836af44d..a09a7590 100755 --- a/engine/overworld/healing_machine.asm +++ b/engine/overworld/healing_machine.asm @@ -89,9 +89,9 @@ FlashSprite8Times:  CopyHealingMachineOAM:  ; copy one OAM entry and advance the pointers -	rept 4 +	REPT 4  	ld a, [de]  	inc de  	ld [hli], a -	endr +	ENDR  	ret | 
