diff --git a/justfile b/justfile index e04864e..891a653 100644 --- a/justfile +++ b/justfile @@ -33,8 +33,11 @@ web GAME: serve GAME: (web GAME) simple-http-server dist/{{GAME}} -itchio GAME: (web GAME) +itchio-dry GAME: (web GAME) butler push --dry-run dist/{{GAME}} popgame/{{GAME}}:html5 --userversion={{VERSION}} +itchio GAME: (web GAME) + butler push dist/{{GAME}} popgame/{{GAME}}:html5 --userversion={{VERSION}} + clean: rm -rf dist/* diff --git a/src/bin/flappy/main.rs b/src/bin/flappy/main.rs index d8507e1..32abb6b 100644 --- a/src/bin/flappy/main.rs +++ b/src/bin/flappy/main.rs @@ -16,7 +16,7 @@ fn main() { title: "flappy bird (with rewind)".into(), name: "flappy".into(), game_type: GameType::Two, - window: Some(Window { resolution: WindowResolution::new(360.0, 640.0), ..default() }) + ..default() }, Physics2dPlugin, ))