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

chore: more fixes

parent 395ef1ff
No related branches found
No related tags found
1 merge request!29Support for Libretro
Pipeline #3074 passed
......@@ -115,7 +115,7 @@ pub extern "C" fn retro_get_system_av_info(info: *mut RetroSystemAvInfo) {
(*info).geometry.max_height = DISPLAY_HEIGHT as u32 * 32;
(*info).geometry.aspect_ratio = DISPLAY_WIDTH as f32 / DISPLAY_HEIGHT as f32;
(*info).timing.fps = GameBoy::VISUAL_FREQ as f64;
(*info).timing.sample_rate = 44100.0;
(*info).timing.sample_rate = EMULATOR.as_ref().unwrap().audio_sampling_rate() as f64;
}
}
......
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