Skip to content
Snippets Groups Projects
Verified Commit 1e7da8a4 authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

fix: clippy issue

parent 137c3c24
No related branches found
No related tags found
No related merge requests found
Pipeline #3157 passed
......@@ -788,7 +788,7 @@ fn main() {
// in case the default ROM path is provided and the file does not
// exist then fails gracefully
let path = Path::new(&args.rom_path);
if &args.rom_path == DEFAULT_ROM_PATH && !path.exists() {
if args.rom_path == DEFAULT_ROM_PATH && !path.exists() {
println!("No ROM file provided, please provide one using the --rom-path option");
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment