diff options
author | LoneWolfHT <lonewolf04361@gmail.com> | 2021-10-15 09:16:09 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-15 18:16:09 +0200 |
commit | c82ec8b210f613fcd5bb386a14f0a8f88591253a (patch) | |
tree | 4ddda7a1b8b2aabb895866cd8475f3b2a65e855a /src/client | |
parent | 6901c5fae54eafb05494823b60d4e26c14b342f1 (diff) | |
download | minetest-c82ec8b210f613fcd5bb386a14f0a8f88591253a.tar.gz minetest-c82ec8b210f613fcd5bb386a14f0a8f88591253a.tar.bz2 minetest-c82ec8b210f613fcd5bb386a14f0a8f88591253a.zip |
Fix compiling on Windows with Visual Studio
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/imagefilters.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/imagefilters.cpp b/src/client/imagefilters.cpp index 97ad094e5..b62e336f7 100644 --- a/src/client/imagefilters.cpp +++ b/src/client/imagefilters.cpp @@ -21,6 +21,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include <cmath> #include <cassert> #include <vector> +#include <algorithm> // Simple 2D bitmap class with just the functionality needed here class Bitmap { |