Skip to content

Commit

Permalink
Fix wrong path
Browse files Browse the repository at this point in the history
  • Loading branch information
lyrakisk committed Oct 8, 2024
1 parent ea3239b commit dd47ff3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/snake/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ fn main() {
let mut screen_state = [0 as u8; 32 * 3 * 32];
let mut rng = rand::thread_rng();

let rom_bytes = read(PathBuf::from("examples/test_rom/snake.nes")).unwrap();
let rom_bytes = read(PathBuf::from("examples/snake/snake.nes")).unwrap();
let rom = Rom::try_from(&rom_bytes).unwrap();
let bus = Bus::new();

Expand Down

0 comments on commit dd47ff3

Please sign in to comment.