From 631c201969c22d8ab14c9388607715c1033818c4 Mon Sep 17 00:00:00 2001 From: Raphael Amorim Date: Mon, 13 Jan 2025 12:28:20 -0300 Subject: [PATCH] bump 0.1.4 --- Cargo.toml | 2 +- examples/terminal/bin.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ca838bc..d5e4814 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] repository = "https://github.com/raphamorim/gameboy" diff --git a/examples/terminal/bin.rs b/examples/terminal/bin.rs index be6c57b..c9c06dc 100644 --- a/examples/terminal/bin.rs +++ b/examples/terminal/bin.rs @@ -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);