diff options
author | Pavel Puchkin <i@neoascetic.me> | 2017-08-24 07:58:12 +0200 |
---|---|---|
committer | Loïc Blot <nerzhul@users.noreply.github.com> | 2017-08-24 07:58:12 +0200 |
commit | 928609c8bd9d4e6129ab244214bd5c54d000b737 (patch) | |
tree | 20c26cb3fc52f88bc564d9d080fb3782d7f4cd2e /src/network/networkpacket.h | |
parent | f7d50a80782376d2e1c068e4d0a7ce9632f28bda (diff) | |
download | minetest-928609c8bd9d4e6129ab244214bd5c54d000b737.tar.gz minetest-928609c8bd9d4e6129ab244214bd5c54d000b737.tar.bz2 minetest-928609c8bd9d4e6129ab244214bd5c54d000b737.zip |
Fix OSX builds (closes #6289, fixes #6270) (#6306)
Of course, this is not ideal solution, but we want our users to be happy in the
first place, right?
Diffstat (limited to 'src/network/networkpacket.h')
-rw-r--r-- | src/network/networkpacket.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/networkpacket.h b/src/network/networkpacket.h index bc0f26e7d..a4899d656 100644 --- a/src/network/networkpacket.h +++ b/src/network/networkpacket.h @@ -19,10 +19,10 @@ with this program; if not, write to the Free Software Foundation, Inc., #pragma once -#include <SColor.h> #include <ctime> #include "util/pointer.h" #include "util/numeric.h" +#include <SColor.h> class NetworkPacket { |