Skip to content

Commit

Permalink
[O] Change defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
hykilpikonna committed Dec 17, 2024
1 parent 927eb98 commit 14538d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
const pid = puzzleId ?? 'slitherlink'
// Main variables
const [rows, cols] = [+(puzzleData?.rows ?? params.get('size') ?? 40), +(puzzleData?.cols ?? params.get('size') ?? 40)]
const [rows, cols] = [+(puzzleData?.rows ?? params.get('size') ?? 25), +(puzzleData?.cols ?? params.get('size') ?? 25)]
const [eRows, eCols] = [rows + 1, cols + 1]
let [numbers, nMask, numberState] = [zero8(rows * cols), zero8(rows * cols).fill(1), zero8(rows * cols)]
let [hStates, vStates] = [zero8(eRows * eCols), zero8(eRows * eCols)]
Expand Down
1 change: 1 addition & 0 deletions src/app.sass
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ main
font-size: 2em
color: colors.$accent
letter-spacing: 0.3em
width: 4em

.status
color: colors.$correct
Expand Down

0 comments on commit 14538d3

Please sign in to comment.