fix(main): GB frametime should be 59.73 Hz

This commit is contained in:
Rekai Nyangadzayi Musuka 2021-08-14 17:59:59 -05:00
parent 1b78b248a3
commit 1acb5de19d
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ fn main() -> Result<()> {
});
let mut start = Instant::now();
let frame_time = Duration::from_secs_f64(1.0 / 60.0); // 60 Hz on Host
let frame_time = Duration::from_secs_f64(1.0 / 59.73); // 59.73 Hz on Host
let mut cycle_count: Cycle = Default::default();
event_loop.run(move |event, _, control_flow| {