aboutsummaryrefslogtreecommitdiff
path: root/editor/editor_export.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2017-04-29 22:57:49 +0200
committerGitHub2017-04-29 22:57:49 +0200
commitde7eba887e9fe940dac0958836fa8fb778628d2a (patch)
tree93b80fde60db3117b649190daa7918105a4d4e11 /editor/editor_export.cpp
parentea9dd6c0c1997b2c6d8bba6caa1da965ef40804f (diff)
parentd4029aa51a0f0bce5dc73885af74b592e3aa33b7 (diff)
downloadgodot-de7eba887e9fe940dac0958836fa8fb778628d2a.tar.gz
godot-de7eba887e9fe940dac0958836fa8fb778628d2a.tar.zst
godot-de7eba887e9fe940dac0958836fa8fb778628d2a.zip
Merge pull request #8572 from akien-mga/thirdparty
Moving more thirdparty stuff (minizip, some single-file external libs) to the thirdparty directory
Diffstat (limited to '')
-rw-r--r--editor/editor_export.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/editor/editor_export.cpp b/editor/editor_export.cpp
index 7dc5db4c7..b719e4a48 100644
--- a/editor/editor_export.cpp
+++ b/editor/editor_export.cpp
@@ -28,13 +28,13 @@
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#include "editor_export.h"
+
#include "editor/editor_file_system.h"
#include "editor/plugins/script_editor_plugin.h"
#include "editor_node.h"
#include "editor_settings.h"
#include "global_config.h"
#include "io/config_file.h"
-#include "io/md5.h"
#include "io/resource_loader.h"
#include "io/resource_saver.h"
#include "io/zip_io.h"
@@ -43,6 +43,8 @@
#include "script_language.h"
#include "version.h"
+#include "thirdparty/misc/md5.h"
+
static int _get_pad(int p_alignment, int p_n) {
int rest = p_n % p_alignment;