remove commented code

This commit is contained in:
Alex Janka 2023-02-22 09:38:08 +11:00
parent 5dba0e039a
commit 5b353364cd
2 changed files with 0 additions and 2 deletions

View file

@ -3,7 +3,6 @@ pub use self::rom::Rom;
use crate::{processor::SplitRegister, util::set_bit, verbose_println, Cpu};
use gilrs::ConnectedGamepadsIterator;
use minifb::Key;
// use std::io::{stdout, Write};
pub mod mmio;
pub(crate) mod rom;

View file

@ -69,7 +69,6 @@ impl Envelope {
impl Default for Envelope {
fn default() -> Self {
Self::new(0x0, EnvelopeMode::Decrease, 0x0)
// Self::new(0xF, EnvelopeMode::Decrease, 0x3)
}
}