Skip to content

Commit

Permalink
Fixed defines sometimes being evaluated in inactive branches
Browse files Browse the repository at this point in the history
  • Loading branch information
RPGHacker committed Jan 27, 2024
1 parent c949cdc commit ab2e365
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/asar/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ void assembleline(const char * fname, int linenum, const char * line)
try
{
string tmp;
if(inmacro) tmp = replace_macro_args(line);
if(inmacro && numif == numtrue) tmp = replace_macro_args(line);
else tmp = line;
clean(tmp);
string out;
Expand Down

0 comments on commit ab2e365

Please sign in to comment.