Same sort of thing as the previous commits, but for the engine. Forward declaration cleanup and constification.

git-svn-id: https://svn.eduke32.com/eduke32@7072 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2018-10-16 06:09:09 +00:00
parent 342b32c4aa
commit 2e2731c119
16 changed files with 35 additions and 84 deletions

View file

@ -1626,7 +1626,7 @@ static md3model_t *md3load(int32_t fil)
}
#ifdef POLYMER
static inline void invertmatrix(float *m, float *out)
static inline void invertmatrix(const float *m, float *out)
{
float det;