commit 4ea8cc2819554ce40c943f38a1ac9860b13bfd4c
parent fc659b909491a000e42ae177ac59137dd4c1efed
Author: neauoire <aliceffekt@gmail.com>
Date: Thu, 13 Jan 2022 14:52:37 -0800
Removed extra specing around bytes in stack printing
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/devices/system.c b/src/devices/system.c
@@ -28,7 +28,7 @@ system_print(Stack *s, char *name)
Uint8 i;
fprintf(stderr, "<%s> ", name);
for(i = 0; i < s->ptr; i++)
- fprintf(stderr, i == s->ptr ? "[%02x]" : " %02x ", s->dat[i]);
+ fprintf(stderr, "%02x ", s->dat[i]);
if(!i)
fprintf(stderr, "empty");
fprintf(stderr, "\n");