Skip to content

Commit 3de0a20

Browse files
committed
bug report on uninitialized areas, update
1 parent 086e87b commit 3de0a20

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

docs/bug.k328.uareas.g

+6-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
FIX_BUG := 0
66
USE_CALM := 0
7+
EMPTY := 0 ; empty doesn't produce error
78
89
virtual at Reserved.BASE
910
Reserved::
@@ -13,9 +14,11 @@ Reserved::
1314
end virtual
1415
1516
Reserved.BASE:
16-
virtual Reserved
17-
rb 16 ; bug only happens when the whole area is uninitialized
18-
end virtual
17+
if ~EMPTY | FIX_BUG
18+
virtual Reserved
19+
rb 16 ; bug only happens when the whole area is uninitialized
20+
end virtual
21+
end if
1922
2023
if USE_CALM
2124
contents AreaContent Reserved

0 commit comments

Comments
 (0)