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>2017-10-12 08:03:29 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-10-12 08:03:29 +0300
commit25263a91297122b915e2b3f183ce0a014e74fde0 (patch)
treec7c98f9a7dc6f92e65166524f64fd80e7fcc41b2 /WorkerForm.cs
parent2b6255aa6622d9750133916502e94e2470a3ead9 (diff)
Fix for #694, translations
Diffstat (limited to 'WorkerForm.cs')
-rw-r--r--WorkerForm.cs8
1 files changed, 1 insertions, 7 deletions
diff --git a/WorkerForm.cs b/WorkerForm.cs
index 6504204c..45cf50de 100644
--- a/WorkerForm.cs
+++ b/WorkerForm.cs
@@ -865,16 +865,10 @@ namespace com.clusterrr.hakchi_gui
}
SetStatus(Resources.UploadingOriginalGames);
+ // Need to make sure that squashfs if mounted
var squashFsMount = clovershell.ExecuteSimple($"mount | grep {squashFsPath}", 3000, false);
if (string.IsNullOrEmpty(squashFsMount))
- {
clovershell.ExecuteSimple($"mkdir -p {squashFsPath} && mount /dev/mapper/root-crypt {squashFsPath}", 3000, true);
- /*
- MessageBoxFromThread(this, "Seems like your are using old version of custom kernel. " +
- "Please install latest version using \"Kernel->Flash custom kernel\" menu to make original games work.",
- Resources.CustomKernel, MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1, false);
- */
- }
startProgress = progress;
foreach (var originalCode in originalGames.Keys)