mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-12-19 09:27:48 -05:00
`char` is unsigned on some platforms, which breaks the assumption it can hold value -1. The simple fix is to replace it by int8_t, which gives compatibility with x86 platforms where Descent3 usually was delivered on. Descent3/attach.cpp:668:47: warning: array subscript has type "char" [-Wchar-subscripts]