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
In some compiler or platform, std::mt19937::result_type will not be unsigned int, this will cause Float() not in 0~1 range. https://github.com/TheCherno/Walnut/blob/3b8e414fdecfc6c8b58816106fe8d912bd172e31/Walnut/src/Walnut/Random.h#L48
std::mt19937::result_type
explicit declare type like below
static std::uniform_int_distribution<uint32_t> s_Distribution;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
1. Describe the bug
In some compiler or platform,
std::mt19937::result_type
will not be unsigned int, this will cause Float() not in 0~1 range.https://github.com/TheCherno/Walnut/blob/3b8e414fdecfc6c8b58816106fe8d912bd172e31/Walnut/src/Walnut/Random.h#L48
2. Desktop
3. My fix solution
explicit declare type like below
The text was updated successfully, but these errors were encountered: