Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/elfmz/far2l.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelfmz <fenix1905@tut.by>2022-11-12 22:59:35 +0300
committerelfmz <fenix1905@tut.by>2022-11-12 22:59:35 +0300
commit1bbd76a8d7f2828c02c058f0b360f8e38e411323 (patch)
tree2873548e398e3a48aba1766b67e53550bab68f9c
parent1e877b1b4c745f1ecb72eeba2e78c14128fc59d3 (diff)
copy: increase progress update rate from 2 per second to 5 per second (fix #1402)
-rw-r--r--far2l/src/copy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/far2l/src/copy.cpp b/far2l/src/copy.cpp
index eca74951..30b88117 100644
--- a/far2l/src/copy.cpp
+++ b/far2l/src/copy.cpp
@@ -93,7 +93,7 @@ extern long WaitUserTime;
/* Для того, что бы время при ожидании пользователя тикало, а remaining/speed нет */
static long OldCalcTime;
-#define PROGRESS_REFRESH_THRESHOLD 500 // msec
+#define PROGRESS_REFRESH_THRESHOLD 200 // msec
enum {COPY_BUFFER_SIZE = 0x800000, COPY_PIECE_MINIMAL = 0x10000};