summaryrefslogtreecommitdiff
path: root/tools/editor/SCsub
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2017-02-19 23:19:30 -0300
committerJuan Linietsky <reduzio@gmail.com>2017-02-19 23:21:35 -0300
commitf6950956bdab064cc1e027b93a0ddd0d94dda882 (patch)
tree595f634ffbd8d5419c82500971e5c3ce2308d229 /tools/editor/SCsub
parent5e3fc7d06956dcda8b50cd4f028c83cf967f7223 (diff)
Editor Export Settings Dialog is completed!! Now on to make some exporters..
Diffstat (limited to 'tools/editor/SCsub')
-rw-r--r--tools/editor/SCsub2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/SCsub b/tools/editor/SCsub
index 710dac3ea7..76eb65748a 100644
--- a/tools/editor/SCsub
+++ b/tools/editor/SCsub
@@ -137,7 +137,7 @@ if (env["tools"] == "yes"):
reg_exporters = 'void register_exporters() {\n'
for e in env.platform_exporters:
env.editor_sources.append("#platform/" + e + "/export/export.cpp")
- reg_exporters += '\t//register_' + e + '_exporter();\n'
+ reg_exporters += '\tregister_' + e + '_exporter();\n'
reg_exporters_inc += '#include "platform/' + e + '/export/export.h"\n'
reg_exporters += '}\n'
f = open("register_exporters.cpp", "wb")