rm push/pop

This commit is contained in:
2026-02-26 08:13:27 -06:00
parent ef7e3e6449
commit ce6b0ddb3a
31 changed files with 251 additions and 255 deletions

View File

@@ -19,10 +19,10 @@ var tilemap = {
var y = pos.y - this.offset_y
while (length(this.tiles) <= x)
push(this.tiles, [])
this.tiles[] = []
while (length(this.tiles[x]) <= y)
push(this.tiles[x], null)
this.tiles[x][] = null
this.tiles[x][y] = image
},