Skip to content

Commit

Permalink
Bugfix: Actually make the prior commit true
Browse files Browse the repository at this point in the history
  • Loading branch information
p4plus2 committed Oct 4, 2023
1 parent aa86f41 commit 016fd29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/asar/assembleblock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1233,7 +1233,7 @@ void assembleblock(const char * block, int& single_line_for_tracker)
}
numopcodes += recent_opcode_num;
}
else if (is1("db") || is1("dw") || is1("dl") || is1("dd"))
else if (numwords > 1 && (is("db") || is("dw") || is("dl") || is("dd")))
{
string line;
for(int i = 1; i < numwords; i++){
Expand Down

0 comments on commit 016fd29

Please sign in to comment.