Differences From Artifact [ffa7840406]:
- File src/world.mm — part of check-in [4b002822f9] at 2025-03-20 16:04:35 on branch trunk — Convert entity to a class (user: js, size: 11045) [annotate] [blame] [check-ins using]
To Artifact [742d4e7bcd]:
- File src/world.mm — part of check-in [08c9d7b0fa] at 2025-03-20 17:12:11 on branch trunk — Remove last usage of vector (user: js, size: 11051) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
238 239 240 241 242 243 244 | s.y /= 2; s.xs /= 2; s.ys /= 2; remip(s, level + 1); } void | | | 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 | s.y /= 2; s.xs /= 2; s.ys /= 2; remip(s, level + 1); } void remipmore(const block &b, int level) { block bb = b; if (bb.x > 1) bb.x--; if (bb.y > 1) bb.y--; if (bb.xs < ssize - 3) |
︙ | ︙ |