shithub: pplay

Download patch

ref: bb7e24b3fd982bd0b4e6f9fd18fda686c572c131
parent: e07d788c963eebe8f958bb7f26d4c52be15f8d20
author: qwx <qwx@sciops.net>
date: Sun Apr 13 12:14:16 EDT 2025

draw: changing the view implies recomputing the waveform

--- a/dat.h
+++ b/dat.h
@@ -41,7 +41,7 @@
 	Rcur = 1<<0,
 	Rrender = 1<<1,
 	Rsamp = 1<<2,
-	Rview = 1<<3,
+	Rview = 1<<3 | Rsamp,
 	Rreset = 1<<4,
 	Rredraw = Rrender | Rsamp | Rreset,
 	Rall = 0x7fffffff,
--