We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
File bluebitmap.cpp, line 88
uint32 color32Bits = color << 24 | color << 16 | color << 8 | color;
needs to be
uint32_t color32Bits = color << 24 | color << 16 | color << 8 | color;
The text was updated successfully, but these errors were encountered:
Thanks!
Sorry, something went wrong.
it was fixed 3 years ago in 593deb3
No branches or pull requests
File bluebitmap.cpp, line 88
uint32 color32Bits = color << 24 | color << 16 | color << 8 | color;
needs to be
uint32_t color32Bits = color << 24 | color << 16 | color << 8 | color;
The text was updated successfully, but these errors were encountered: