BrogueCE
BrogueCE copied to clipboard
Replaced hitList with const hitList
I have replaced every creature **hitList with const creature **hitList. This removes the incompatible const pointer errors with GCC 14 and allows for compilation without the -Wno-error=incompatible-pointer-types flag. However it introduces many strncpy and strncat warnings so I am not sure if this is an appropriate solution.
Refs #696
Any advice would be appreciated.