shithub: neindaw

Download patch

ref: 934507cdd80d9f49635d1cfbe4b013a0934f3d18
parent: 3922b88bda427a03486ce01fc9a11739a570b545
author: Sigrid Haflínudóttir <ftrvxmtrx@gmail.com>
date: Thu Mar 19 16:50:01 EDT 2020

ay: reset dsp ctl command needs to reset the ui as well, add a note

--- a/ay/ay.c
+++ b/ay/ay.c
@@ -405,7 +405,7 @@
 		break;
 	case Xdspctl: /* FIXME changing sampling rate */
 		o = auxtype2obj(&a->type);
-		if (strncmp(b, "reset", 5) == 0)
+		if (strncmp(b, "reset", 5) == 0) /* FIXME ui needs to be reset as well */
 			ay38910_reset(&o->dsp->ay);
 		respond(r, nil);
 		break;