diff options
author | Loïc Blot <nerzhul@users.noreply.github.com> | 2017-08-19 22:24:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-19 22:24:30 +0200 |
commit | 50669cd2822a11570ae462972194eeb2d585a8c1 (patch) | |
tree | d3e099bdf31cf73aa7ab77091fd9f28b85ff4507 | |
parent | 88b436e6a9c98af7215bd115e1b7a3f1a1db99d3 (diff) | |
download | minetest-50669cd2822a11570ae462972194eeb2d585a8c1.tar.gz minetest-50669cd2822a11570ae462972194eeb2d585a8c1.tar.bz2 minetest-50669cd2822a11570ae462972194eeb2d585a8c1.zip |
Fix shader.h inclusion place in game.cpp
-rw-r--r-- | src/game.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/game.cpp b/src/game.cpp index c71fa457b..233c26525 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -54,6 +54,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "raycast.h" #include "server.h" #include "settings.h" +#include "shader.h" #include "sky.h" #include "subgame.h" #include "tool.h" @@ -66,8 +67,6 @@ with this program; if not, write to the Free Software Foundation, Inc., #if USE_SOUND #include "sound_openal.h" -#include "shader.h" - #endif extern Settings *g_settings; |