chore: only sync to audio for now

This commit is contained in:
2022-04-21 10:52:26 -03:00
parent e3553bcbd6
commit 762494453f
2 changed files with 2 additions and 2 deletions

View File

@@ -102,7 +102,7 @@ pub fn main() anyerror!void {
var emu_rate = FpsAverage.init();
// Create Emulator Thread
const emu_thread = try Thread.spawn(.{}, emu.run, .{ .LimitedFPS, &quit, &emu_rate, &scheduler, &cpu });
const emu_thread = try Thread.spawn(.{}, emu.run, .{ .UnlimitedFPS, &quit, &emu_rate, &scheduler, &cpu });
defer emu_thread.join();
var title_buf: [0x20]u8 = std.mem.zeroes([0x20]u8);