Browse code

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

Devine Lu Linvega authored on 07/04/2023 00:50:03
Showing 1 changed files
... ...
@@ -76,7 +76,7 @@ system_deo(Uxn *u, Uint8 *d, Uint8 port)
76 76
 		system_cmd(u->ram, PEEK2(d + 2));
77 77
 		break;
78 78
 	case 0xe:
79
-		if(u->wst->ptr || u->rst->ptr) system_inspect(u);
79
+		system_inspect(u);
80 80
 		break;
81 81
 	}
82 82
 }