mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-11 04:51:13 +00:00
72bbb19cc7
From what I can see, GCC would miscompile the involved loops, because the index variable is 'signed int' and the multiplication with an unsigned would cause signed overflow (undefined behavior). Change the index variable type to 'unsigned int' to expect unsigned overflow (conformant to standard). |
||
---|---|---|
.. | ||
a_chicken.cpp | ||
a_dsparil.cpp | ||
a_hereticartifacts.cpp | ||
a_hereticimp.cpp | ||
a_hereticmisc.cpp | ||
a_hereticweaps.cpp | ||
a_ironlich.cpp | ||
a_knight.cpp | ||
a_wizard.cpp |