tangled
alpha
login
or
join now
cass.cityboundforest.com
/
pathdelver
0
fork
atom
A dungeon delver roguelike using Pathfinder 2nd edition rules
0
fork
atom
overview
issues
pulls
pipelines
Setting starting dungeon size to 6 by 6
cass.cityboundforest.com
1 year ago
210e34ec
53a48c32
+4
-4
1 changed file
expand all
collapse all
unified
split
gb
src
main.asm
+4
-4
gb/src/main.asm
···
25
25
call srand
26
26
27
27
; Initialize Dungeon
28
28
-
ld b, 15 ; Starting Width
29
29
-
ld c, 15 ; Starting Height
30
30
-
ld d, 225 ; W * H
31
31
-
ld e, 168 ; W * H * 0.75
28
28
+
ld b, 6 ; Starting Width
29
29
+
ld c, 6 ; Starting Height
30
30
+
ld d, 36 ; W * H
31
31
+
ld e, 27 ; W * H * 0.75
32
32
call InitDungeon
33
33
call GenerateDungeon
34
34