diff options
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/bin.rs | 6 | ||||
-rw-r--r-- | src/ppu.rs | 3 |
3 files changed, 6 insertions, 5 deletions
@@ -1,6 +1,6 @@ [package] name = "runes" -version = "0.1.9" +version = "0.2.0" authors = ["Determinant <[email protected]>"] description = "No-std NES emulator library and minimal emulator written purely in Rust." repository = "https://github.com/Determinant/runes" @@ -44,8 +44,8 @@ const PIX_WIDTH: u32 = 256; const PIX_HEIGHT: u32 = 240; const FB_PITCH: usize = PIX_WIDTH as usize * 3; const FB_SIZE: usize = PIX_HEIGHT as usize * FB_PITCH; -const AUDIO_SAMPLES: u16 = 4410; -const AUDIO_EXTRA_SAMPLES: u16 = AUDIO_SAMPLES; +const AUDIO_SAMPLES: u16 = 441; +const AUDIO_EXTRA_SAMPLES: u16 = 4410; const AUDIO_ALL_SAMPLES: u16 = AUDIO_SAMPLES + AUDIO_EXTRA_SAMPLES; pub struct SimpleCart { @@ -219,7 +219,7 @@ impl InputPoller for SDLEventPoller { Event::Quit {..} | Event::KeyDown { keycode: Some(Escape), .. } => { self.exit_flag.set(true) }, - Event::KeyDown { keycode: Some(c), .. } => + Event::KeyDown { keycode: Some(c), .. } => ns |= keyboard_mapping(c), Event::KeyUp { keycode: Some(c), .. } => ns &= !keyboard_mapping(c), @@ -100,7 +100,8 @@ impl<'a> PPU<'a> { #[inline] pub fn write_oamdata(&mut self, data: u8) { self.reg = data; - self.get_oam_raw_mut()[self.oamaddr as usize] = data; + let addr = self.oamaddr as usize; + self.get_oam_raw_mut()[addr] = data; self.oamaddr = self.oamaddr.wrapping_add(1); } |