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

fix: removed ultra large buffer

parent cb0b2456
No related branches found
No related tags found
No related merge requests found
Pipeline #3173 passed
......@@ -192,8 +192,8 @@ pub unsafe extern "C" fn retro_get_system_av_info(info: *mut RetroSystemAvInfo)
debugln!("retro_get_system_av_info()");
(*info).geometry.base_width = DISPLAY_WIDTH as u32;
(*info).geometry.base_height = DISPLAY_HEIGHT as u32;
(*info).geometry.max_width = DISPLAY_WIDTH as u32 * 64;
(*info).geometry.max_height = DISPLAY_HEIGHT as u32 * 64;
(*info).geometry.max_width = DISPLAY_WIDTH as u32;
(*info).geometry.max_height = DISPLAY_HEIGHT as u32;
(*info).geometry.aspect_ratio = DISPLAY_WIDTH as f32 / DISPLAY_HEIGHT as f32;
(*info).timing.fps = GameBoy::VISUAL_FREQ as f64;
(*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