mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-22 19:22:05 +00:00
Fix else working incorrectly from macros
Since the "skip ELSE blocks" variable is global, it used to get carried over from the macro's `if` to the outer's.
This commit is contained in:
13
test/asm/if-macro.asm
Normal file
13
test/asm/if-macro.asm
Normal file
@@ -0,0 +1,13 @@
|
||||
m: macro
|
||||
if 0
|
||||
WARN "3"
|
||||
else
|
||||
WARN "5"
|
||||
endc
|
||||
endm
|
||||
|
||||
if 1
|
||||
m
|
||||
else
|
||||
WARN "12"
|
||||
endc
|
||||
Reference in New Issue
Block a user