Fix ECHOPAIR ambiguity

- Also patch up some warnings
This commit is contained in:
Scott Lahteine
2015-03-27 00:46:39 -07:00
parent b2496533c6
commit 460f73056b
4 changed files with 6 additions and 6 deletions

View File

@ -37,7 +37,7 @@ struct vector_3
float get_length();
vector_3 get_normal();
void debug(char* title);
void debug(const char title[]);
void apply_rotation(matrix_3x3 matrix);
};
@ -52,7 +52,7 @@ struct matrix_3x3
void set_to_identity();
void debug(char* title);
void debug(const char title[]);
};