Skip to content

Commit

Permalink
fix inline if deprecation message showing up when it shouldn't
Browse files Browse the repository at this point in the history
  • Loading branch information
randomdude999 committed Mar 7, 2024
1 parent d66bd06 commit f62c728
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 @@ -993,7 +993,7 @@ void assembleblock(const char * block, bool isspecialline)
#define is3(test) (numwords==4 && !stricmpwithlower(word[0], test))
#define par word[1]

if(!moreonlinecond && !(is("elseif") || is("else"))){
if(!moreonlinecond && !(is("elseif") || is("else") || is("endif") || is("endwhile"))){
return;
}

Expand Down

0 comments on commit f62c728

Please sign in to comment.