Skip to content

Commit

Permalink
👷 chore: Remove unneeded printlns
Browse files Browse the repository at this point in the history
  • Loading branch information
ProfElements committed Dec 23, 2023
1 parent cb7c602 commit 833d7cc
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/video.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ use crate::{
config::{ConfData, Config, Reader},
isfs,
mmio::vi::{VideoFormat, ViselDTV},
println,
};

pub fn get_video_format() -> Option<VideoFormat> {
Expand All @@ -16,7 +15,6 @@ pub fn get_video_format() -> Option<VideoFormat> {

for line in text.lines() {
if let Some(char) = line.find("VIDEO=") {
println!("{}", &line[char + 6..]);
return match line[char + 6..].trim() {
"NTSC" => Some(VideoFormat::Ntsc),
"PAL" => Some(VideoFormat::Pal),
Expand Down

0 comments on commit 833d7cc

Please sign in to comment.