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
Maybe a minor warning to ignore, or "axis" variable could be as well turned into a signed type
src/events/SDL_events.c:733:48: warning: result of comparison of unsigned enum expression >= 0 is always true [-Wtautological-unsigned-enum-zero-compare] 733 | ((event->paxis.axis >= 0) && (event->paxis.axis < SDL_arraysize(pen_axisnames))) ? pen_axisnames[event->paxis.axis] : "[UNKNOWN]", event->paxis.value); | ~~~~~~~~~~~~~~~~~ ^ ~
The text was updated successfully, but these errors were encountered:
I hate that about clang. Is it impossible to receive an arbitrary integer instead of the defined enumerated values in C?
Sorry, something went wrong.
icculus
No branches or pull requests
Maybe a minor warning to ignore, or "axis" variable could be as well turned into a signed type
The text was updated successfully, but these errors were encountered: