The source project of this merge request has been removed.
Fix SHADER_OFFSET_CONT undefined shift
0x1 << 31 is undefined behavior based on C99 rules. (see ...) Use unsigned syntax as an alternative to disable the warning.
Fix: #60 (closed)
Due to an influx of spam, we have had to impose restrictions on new accounts. Please see this wiki page for instructions on how to get full permissions. Sorry for the inconvenience.
0x1 << 31 is undefined behavior based on C99 rules. (see ...) Use unsigned syntax as an alternative to disable the warning.
Fix: #60 (closed)