From eaf7d095ecbdf9f41edf0412ff1a6e8e6cbd71cc Mon Sep 17 00:00:00 2001 From: Devine Lu Linvega Date: Thu, 6 Apr 2023 17:50:03 -0700 Subject: [PATCH] (system.c) The debug port will always print the stacks, even if empty --- src/devices/system.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/system.c b/src/devices/system.c index fbf54d2..8645aaa 100644 --- 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; } }