Skip to content

Commit

Permalink
Put crate version number in the window title
Browse files Browse the repository at this point in the history
  • Loading branch information
tomm committed Oct 18, 2023
1 parent 39dacf9 commit 1229b5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ pub fn main() -> Result<(), pico_args::Error> {
}
};

let mut window = video_subsystem.window("Fab Agon Emulator", wx, wy)
let mut window = video_subsystem.window(&format!("Fab Agon Emulator {}", env!("CARGO_PKG_VERSION")), wx, wy)
.resizable()
.position_centered()
.build()
Expand Down

0 comments on commit 1229b5e

Please sign in to comment.