Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Commit

Permalink
Remove debugging stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
noahc3 committed Jul 10, 2018
1 parent ce60bb5 commit 5b93ece
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion auto h-encore/Reference.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

namespace auto_h_encore {
public static class Reference {
public static readonly string version = "0.4.1";
public static readonly string version = "0.4.2 b1";
public static readonly string config_language = Environment.CurrentDirectory + "\\settings.conf";

public static readonly string path_hencore = Environment.CurrentDirectory + "\\data\\h-encore\\";
Expand Down
20 changes: 10 additions & 10 deletions auto h-encore/Utility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,16 +109,16 @@ public static string MD5Checksum(string path) {

public static string FindQCMA(Form1 form) {
form.info(Language.MountedLanguage["log_SearchingForQCMA"]);
//if (FileSystem.FileExists("C:\\Program Files\\Qcma\\qcma.exe")) {
// form.info(Language.MountedLanguage["log_FoundQCMA"]);
// Global.QCMA_Installed = true;
// return "C:\\Program Files\\Qcma\\qcma.exe";
//}
//if (FileSystem.FileExists("C:\\Program Files (x86)\\Qcma\\qcma.exe")) {
// form.info(Language.MountedLanguage["log_FoundQCMA"]);
// Global.QCMA_Installed = true;
// return "C:\\Program Files (x86)\\Qcma\\qcma.exe";
//}
if (FileSystem.FileExists("C:\\Program Files\\Qcma\\qcma.exe")) {
form.info(Language.MountedLanguage["log_FoundQCMA"]);
Global.QCMA_Installed = true;
return "C:\\Program Files\\Qcma\\qcma.exe";
}
if (FileSystem.FileExists("C:\\Program Files (x86)\\Qcma\\qcma.exe")) {
form.info(Language.MountedLanguage["log_FoundQCMA"]);
Global.QCMA_Installed = true;
return "C:\\Program Files (x86)\\Qcma\\qcma.exe";
}
form.info(Language.MountedLanguage["log_QCMANotFound"]);
Global.QCMA_Installed = false;
return "";
Expand Down

0 comments on commit 5b93ece

Please sign in to comment.