libneofx: Fixed some warnings with -Wall

This commit is contained in:
neoraider 2007-10-31 23:15:01 +00:00
parent 2664e16406
commit da5b329d8a
2 changed files with 5 additions and 5 deletions

8
math.c
View file

@ -76,22 +76,22 @@ int VectorEqual(VECTOR v1, VECTOR v2) {
}
MATRIX MatrixIdentity() {
MATRIX m = {
MATRIX m = {.f = {
1.0, 0.0, 0.0, 0.0,
0.0, 1.0, 0.0, 0.0,
0.0, 0.0, 1.0, 0.0,
0.0, 0.0, 0.0, 1.0
};
}};
return m;
}
MATRIX MatrixMul(MATRIX m1, MATRIX m2) {
MATRIX m = {
MATRIX m = {.f = {
0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 0.0, 0.0
};
}};
short i, j, k;
for(i = 0; i < 4; i++)

View file

@ -2,7 +2,7 @@
#include <neofx/math.h>
#include <math.h>
static VECTOR gravitation = {0, -9.8, 0};
static VECTOR gravitation = {{0, -9.8, 0}};
void SetGravitation(VECTOR v) {