uxn

Varvara Ordinator, written in ANSI C(SDL2)
git clone https://git.eamoncaddigan.net/uxn.git
Log | Files | Refs | README | LICENSE

commit eaf7d095ecbdf9f41edf0412ff1a6e8e6cbd71cc
parent 38ec3ef7e74aee572bf966f22ab911591611fc69
Author: Devine Lu Linvega <aliceffekt@gmail.com>
Date:   Thu,  6 Apr 2023 17:50:03 -0700

(system.c) The debug port will always print the stacks, even if empty

Diffstat:
Msrc/devices/system.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/devices/system.c b/src/devices/system.c @@ -76,7 +76,7 @@ system_deo(Uxn *u, Uint8 *d, Uint8 port) system_cmd(u->ram, PEEK2(d + 2)); break; case 0xe: - if(u->wst->ptr || u->rst->ptr) system_inspect(u); + system_inspect(u); break; } }