Skip to content

Commit

Permalink
default to 2x2 nyancat at 20x20
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed Feb 21, 2020
1 parent 0de55b8 commit e444442
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Main.elm
Expand Up @@ -50,7 +50,7 @@ type Msg

init : () -> ( Model, Cmd Msg )
init _ =
( load Image.waves { width = 3, height = 3 }
( load Image.nyan { width = 2, height = 2 }
, Cmd.none
)

Expand Down Expand Up @@ -118,8 +118,8 @@ load image windowSize =
{ image = image
, windowSize = windowSize
, windows = windows
, wave = Wave.init rules weights { width = 10, height = 10 }
, waveSize = { width = 10, height = 10 }
, wave = Wave.init rules weights { width = 20, height = 20 }
, waveSize = { width = 20, height = 20 }
, seed = Random.initialSeed 0
, running = False
, indexes = indexes
Expand Down

0 comments on commit e444442

Please sign in to comment.