diff options
| author | Aargh Rai <aargh.rai+git@gmail.com> | 2026-02-20 17:04:46 +0530 |
|---|---|---|
| committer | Aargh Rai <aargh.rai+git@gmail.com> | 2026-02-20 17:04:46 +0530 |
| commit | 9cd36deffadc4f5ab83f08c2999407b31354027e (patch) | |
| tree | e298606fb938ac6aea26c408c3cd29ddf4b17f9c /bitboards.html | |
| parent | fd57b964e50a4cb3385976a473bc287d682bcbdb (diff) | |
some moves dynamic array setup & starting position
Diffstat (limited to 'bitboards.html')
| -rw-r--r-- | bitboards.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitboards.html b/bitboards.html index 94006a7..b9db958 100644 --- a/bitboards.html +++ b/bitboards.html @@ -100,7 +100,7 @@ const label = document.createElement("div"); label.classList.add("horizontal_label"); board.appendChild(label); - for (let i = 0; i < 8; i++) { + for (let i = 1; i < 9; i++) { const label = document.createElement("div"); label.classList.add("horizontal_label"); label.textContent = i; |
