Skip to content

Commit

Permalink
Increase Default Window Size
Browse files Browse the repository at this point in the history
  • Loading branch information
OetkenPurveyorOfCode committed Oct 18, 2023
1 parent 47d6d11 commit 043b441
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@ edition = "2021"

[dependencies]
minifb = "0.23"
rayon = "1.5"
rayon = "1.5"

[profile.release]
debug=true
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ extern crate minifb;

use minifb::{Key, MouseButton, MouseMode, Scale, ScaleMode, Window, WindowOptions};
use rayon::prelude::*;
const WIDTH: usize = 640;
const HEIGHT: usize = 360;
const WIDTH: usize = 1200;
const HEIGHT: usize = 800;

#[derive(Default, Debug)]
struct Rect {
Expand Down

0 comments on commit 043b441

Please sign in to comment.