summaryrefslogtreecommitdiff
path: root/main/main.cpp
diff options
context:
space:
mode:
authorJ08nY <johny@neuromancer.sk>2016-10-01 22:04:10 +0200
committerJ08nY <johny@neuromancer.sk>2016-10-01 22:07:07 +0200
commitb1fba2e013e0dc53dec7406e5db4fbc65ad17a94 (patch)
treefff8f2fa4bf204d7dd06b7e453cfe2253a5ccd51 /main/main.cpp
parent3ecd8560fd90a615d80a447b04e713bb2c600fe4 (diff)
PCKPacker: moved from tools into core, fixes #4129
Diffstat (limited to 'main/main.cpp')
-rw-r--r--main/main.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/main/main.cpp b/main/main.cpp
index d2ba38b094..cd6858fc24 100644
--- a/main/main.cpp
+++ b/main/main.cpp
@@ -57,7 +57,6 @@
#include "tools/editor/editor_node.h"
#include "tools/editor/project_manager.h"
-#include "tools/pck/pck_packer.h"
#endif
#include "io/file_access_network.h"
@@ -996,7 +995,7 @@ Error Main::setup2() {
#ifdef TOOLS_ENABLED
ObjectTypeDB::set_current_api(ObjectTypeDB::API_EDITOR);
EditorNode::register_editor_types();
- ObjectTypeDB::register_type<PCKPacker>(); // todo: move somewhere else
+
ObjectTypeDB::set_current_api(ObjectTypeDB::API_CORE);
#endif
@@ -1755,4 +1754,3 @@ void Main::cleanup() {
}
-