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
Based on forum discussion: https://community.rebeltech.org/t/witch-error-0x60-invalid-save-name-quadsampler/2096
Resource name is QuadSampler.cfg, so 15 bytes + null byte
This can fit into 16 byte Resource::name field, but we demand strictly less than 16 bytes instead of <= 16.
We use strlcpy function to verify that resource name is null terminated, so extra checks due to this change are not necessary
The text was updated successfully, but these errors were encountered:
antisvin
No branches or pull requests
Based on forum discussion: https://community.rebeltech.org/t/witch-error-0x60-invalid-save-name-quadsampler/2096
Resource name is QuadSampler.cfg, so 15 bytes + null byte
This can fit into 16 byte Resource::name field, but we demand strictly less than 16 bytes instead of <= 16.
We use strlcpy function to verify that resource name is null terminated, so extra checks due to this change are not necessary
The text was updated successfully, but these errors were encountered: