Skip to content

Commit 8dbfc45

Browse files
committed
[WeiDU] Updated to v1.2
1 parent 518bd4c commit 8dbfc45

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tileconv/WeiDU/a7_tools.tpa

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Note: Requires WeiDU v239 or later! *
44
* *
55
* Author: Argent77 *
6-
* Version: 1.1 *
6+
* Version: 1.2 *
77
*******************************************************************************************************/
88

99
/*
@@ -107,6 +107,9 @@
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%~

0 commit comments

Comments
 (0)