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

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2018-02-22 16:15:54 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2018-02-22 16:15:54 +0300
commitdca65b2c83fd8376fc0b20cfb794edb74c96c0a8 (patch)
tree39dc7e45f396e25b24d660dc3ffb18dd65a5ea98 /WorkerForm.cs
parentb565a2cd1d34afebcc7ec9ce6e29fee080f8e6c8 (diff)
Fixes, fixes, fixes
Diffstat (limited to 'WorkerForm.cs')
-rw-r--r--WorkerForm.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/WorkerForm.cs b/WorkerForm.cs
index c12a7282..db01067d 100644
--- a/WorkerForm.cs
+++ b/WorkerForm.cs
@@ -971,7 +971,7 @@ namespace com.clusterrr.hakchi_gui
{
try
{
- pos += NesMiniApplication.DirectorySize(Path.Combine(Path.Combine(tempGamesDirectory, ".."), line.Replace("/", "\\")));
+ pos += NesMiniApplication.DirectorySize(Path.Combine(Path.Combine(tempGamesDirectory, ".."), lastDirectory.Replace("/", "\\")));
progress = (int)(startProgress + pos / 1024 / 1024);
SetProgress(progress, maxProgress);
}