diff options
author | Juan Linietsky <reduzio@gmail.com> | 2014-12-02 17:26:56 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2014-12-02 17:26:56 -0300 |
commit | 8ad12525a90d90d77dc08b3d6decae33be5675c4 (patch) | |
tree | db941f3cf3546624772e24f90b4f4be3348370b8 /tools/editor | |
parent | e361e8539c889d3ca66e77ebb5d0ceb61d17f49d (diff) |
-fixes to vmethod for button
Diffstat (limited to 'tools/editor')
-rw-r--r-- | tools/editor/editor_import_export.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/editor_import_export.cpp b/tools/editor/editor_import_export.cpp index 6e8cb987e9..a511e78863 100644 --- a/tools/editor/editor_import_export.cpp +++ b/tools/editor/editor_import_export.cpp @@ -938,7 +938,7 @@ Error EditorExportPlatform::save_pack(FileAccess *dst,bool p_make_bundles) { dst->store_32(0); //pack version dst->store_32(VERSION_MAJOR); dst->store_32(VERSION_MINOR); - dst->store_32(VERSION_REVISION); + dst->store_32(0); //hmph for(int i=0;i<16;i++) { //reserved dst->store_32(0); |