From b0fcbd0c8f5707c05b3529b0993d09c43a6803e2 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 21 May 2022 21:08:26 -0700 Subject: [PATCH] only slow down to 15 fps --- src/Window.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Window.zig b/src/Window.zig index 950143fb9..6d7c3b16b 100644 --- a/src/Window.zig +++ b/src/Window.zig @@ -223,7 +223,7 @@ pub fn create(alloc: Allocator, loop: libuv.Loop, config: *const Config) !*Windo .terminal_stream = .{ .handler = self }, .cursor_timer = timer, .cursor_style = .blinking_block, - .render_timer = try RenderTimer.init(loop, self, 16, 96), + .render_timer = try RenderTimer.init(loop, self, 16, 64), .pty_stream = stream, .config = config, .bg_r = @intToFloat(f32, config.background.r) / 255.0,