From a856bf798f8674a2910aed7efe0cb340a39559b4 Mon Sep 17 00:00:00 2001 From: malc Date: Tue, 22 Jun 2010 04:21:07 +0400 Subject: [PATCH] Change default slice height to make text scroll smoother on this machine --- link.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/link.c b/link.c index 8771579..8ffbba6 100644 --- a/link.c +++ b/link.c @@ -1311,8 +1311,8 @@ CAMLprim value ml_init (value sock_v) int ret; CAMLparam1 (sock_v); - state.texcount = 128; - state.sliceheight = 64; + state.texcount = 256; + state.sliceheight = 16; state.texids = calloc (state.texcount * sizeof (*state.texids), 1); if (!state.texids) { -- 2.11.4.GIT