File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 33 * Note: Requires WeiDU v239 or later! *
44 * *
55 * Author: Argent77 *
6- * Version: 1.1 *
6+ * Version: 1.2 *
77 *******************************************************************************************************/
88
99/*
107107 *
108108 *
109109 * Changelog:
110+ * v1.2:
111+ * - Fixed a bug that could fail HANDLE_TILECONV and HANDLE_TILE2EE with large output files.
112+ *
110113 * v1.1:
111114 * - Added support for converting single input file in HANDLE_TILECONV and HANDLE_TILE2EE.
112115 * - Removed action function REMOVE_DIRECTORY. WeiDU's DELETE action offers the same functionality (since v239).
@@ -388,7 +391,7 @@ BEGIN
388391 END
389392 ACTION_IF (FILE_EXISTS ~%bc_file%~) BEGIN
390393 OUTER_SET num_converted = num_converted + 1
391- COPY ~%bc_file%~ ~%output_path%~
394+ COPY_LARGE ~%bc_file%~ ~%output_path%~
392395 DELETE + ~%bc_file%~
393396 END
394397 DELETE + ~%bc_folder%~
@@ -423,7 +426,7 @@ BEGIN
423426 END
424427 ACTION_IF (FILE_EXISTS ~%bc_file%~) BEGIN
425428 OUTER_SET num_converted = num_converted + 1
426- COPY ~%bc_file%~ ~%output_path%~
429+ COPY_LARGE ~%bc_file%~ ~%output_path%~
427430 DELETE + ~%bc_file%~
428431 END
429432 DELETE + ~%bc_folder%~
You can’t perform that action at this time.
0 commit comments