shithub: wl9m

Download patch

ref: a23f5e816fc1f9b73a66b30f41c7f72b97c1dd07
parent: 9c25e3a38f465444d684a58a24f7567e6b59299c
author: glenda <glenda@fileserver>
date: Mon Jan 5 23:39:18 EST 2026

changed to fixed 33ms delay

--- a/linux/p9wl.c
+++ b/linux/p9wl.c
@@ -505,6 +505,7 @@
 }
 
 static int calc_flush_delay(int num_tiles) {
+	return 33; 
     int delay = 5 + (num_tiles / 100);
     return delay > 30 ? 30 : delay;
 }
--