Skip to content

Commit

Permalink
output no longer fails when not generating .ips
Browse files Browse the repository at this point in the history
  • Loading branch information
nstbayless committed Jun 14, 2020
1 parent e154a98 commit 428a598
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asm6f.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 428a598

Please sign in to comment.