From 428a598e357b5ec4e7c9beb13477168f4e74907a Mon Sep 17 00:00:00 2001 From: NaOH Date: Sat, 13 Jun 2020 17:31:32 -0700 Subject: [PATCH] output no longer fails when not generating .ips --- asm6f.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asm6f.c b/asm6f.c index 63961d0..6b666fe 100644 --- a/asm6f.c +++ b/asm6f.c @@ -2646,7 +2646,7 @@ void output(byte *p,int size, int cdlflag) { if (nooutput) return; - if(!outputfile || !genips) return; + if(!outputfile && !genips) return; // write data. output_buffer(p, size);