Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing if condition bug! #13

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Commits on May 10, 2021

  1. Fixing if condition bug!

    The right side of an `||` expression always evaluated to false because it was testing that the same byte is simultaneously equal to four different values, which is logically impossible without being `volatile` (and if even if it were `volatile` it would almost certainly still be a bug).
    
    Instead, I believe the intention was to work like the left-hand expression, which tests four consecutive bytes. I've changed it to do that.
    chipjarred committed May 10, 2021
    Configuration menu
    Copy the full SHA
    00ec071 View commit details
    Browse the repository at this point in the history