Skip to content

Commit

Permalink
Set right screen size + Testing rom
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacMarovitz committed Nov 13, 2023
1 parent a02471f commit 9a79332
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file added roms/instr_timing.gb
Binary file not shown.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ fn main() -> Result<(), impl std::error::Error> {

let window = WindowBuilder::new()
.with_title("gb-rs")
.with_inner_size(winit::dpi::LogicalSize::new(128.0, 128.0))
.with_inner_size(winit::dpi::LogicalSize::new(160, 144))
.build(&event_loop)
.unwrap();

event_loop.run(move |event, elwt| {
println!("{event:?}");
// println!("{event:?}");
})
}

0 comments on commit 9a79332

Please sign in to comment.