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

Remove unnecessary step with number separator from Color function #208

Merged
merged 1 commit into from
Aug 4, 2021

Commits on Aug 2, 2021

  1. Remove unnecessary step with number separator from Color function

    AFAIK `object &= 0xFF_FF_FF;` was an unnecessary step, because
    
    `object & 0xFF` is equivalent to `object & 0xFF_FF_FF & 0xFF` and
    `(object >> 16) & 0xFF` is equivalent to `((object & 0xFF_FF_FF) >> 16) & 0xFF`
    
    This should prevent the error described in https://github.com/Qix-/color/issues/204
    slaweet committed Aug 2, 2021
    Configuration menu
    Copy the full SHA
    694d197 View commit details
    Browse the repository at this point in the history