Skip to content

Commit

Permalink
bump 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
raphamorim committed Jan 13, 2025
1 parent 2539aca commit 631c201
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gameboy"
version = "0.1.3"
version = "0.1.4"
description = "Gameboy emulator written in Rust and WebAssembly"
authors = ["Raphael Amorim <[email protected]>"]
repository = "https://github.com/raphamorim/gameboy"
Expand Down
2 changes: 1 addition & 1 deletion examples/terminal/bin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use gameboy::gameboy::{load_rom, Gameboy, RenderMode::Terminal};

fn main() {
// TODO: Allow receive path by arguments
if let Ok((data, filepath)) = load_rom("./../pokemon-silver.gbc") {
if let Ok((data, filepath)) = load_rom("./../the-machine.gb") {
// if let Ok((data, filepath)) = load_rom("./../bakery.gb") {
let gb = Gameboy::new(data, Some(filepath));
gb.render(Terminal);
Expand Down

0 comments on commit 631c201

Please sign in to comment.