Amjad50 / plastic

NES emulator in rust with egui and TUI
MIT License
299 stars 12 forks source link

Unwrap Error handling will cause panics use other methods #12

Open silverhadch opened 1 day ago

silverhadch commented 1 day ago

Error handling with unwrap isnt a great idea if an error accours the programm will panic instead of ending the error gracefully. Recommending using ? for error handling.