Fixed wrong include guard.

This commit is contained in:
Felix Ableitner 2012-10-21 17:27:24 +02:00
parent 38d97abd5c
commit 27388c7af3
1 changed files with 3 additions and 4 deletions

View File

@ -5,8 +5,8 @@
* Author: Felix * Author: Felix
*/ */
#ifndef VECTOR_H_ #ifndef DG_VECTOR_H_
#define VECTOR_H_ #define DG_VECTOR_H_
#include <math.h> #include <math.h>
@ -80,5 +80,4 @@ angle(float in) {
return Vector2f(sin(in), cos(in)); return Vector2f(sin(in), cos(in));
} }
#endif /* DG_VECTOR_H_ */
#endif /* VECTOR_H_ */