From: Tobias Gläßer Date: Thu, 5 Aug 2004 20:11:30 +0000 (+0000) Subject: Fixed #include introduced by the last commit. X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=5d068da91eb5eff9bc13d53e6632028c0f61f315;p=supertux.git Fixed #include introduced by the last commit. In the library all includes have to be in "#include ../libsubdir/foo.h" style, so that the relations between the includes work correctly inside your /usr/(local)/include/ directory as well. SVN-Revision: 1713 --- diff --git a/lib/math/vector.h b/lib/math/vector.h index 90588c827..faedaff9e 100644 --- a/lib/math/vector.h +++ b/lib/math/vector.h @@ -20,7 +20,7 @@ #ifndef SUPERTUX_VECTOR_H #define SUPERTUX_VECTOR_H -#include "special/base.h" +#include "../special/base.h" namespace SuperTux {