diff options
-rw-r--r-- | src/app/main.js | 2 | ||||
-rw-r--r-- | src/utils.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/app/main.js b/src/app/main.js index d30489e..8cd00a3 100644 --- a/src/app/main.js +++ b/src/app/main.js @@ -21,7 +21,7 @@ if (fs.existsSync("viper.json")) { settings = {...settings, ...JSON.parse(fs.readFileSync("viper.json", "utf8"))}; settings.zip = path.join(settings.gamepath + "/northstar.zip"); } else { - alert(lang("general.missinggamepath")); + alert(lang("general.missingpath")); setpath(); } diff --git a/src/utils.js b/src/utils.js index e378366..35c8932 100644 --- a/src/utils.js +++ b/src/utils.js @@ -30,7 +30,7 @@ if (fs.existsSync("viper.json")) { settings = {...settings, ...JSON.parse(fs.readFileSync("viper.json", "utf8"))}; settings.zip = path.join(settings.gamepath + "/northstar.zip"); } else { - console.log(lang("general.missinggamepath")); + console.log(lang("general.missingpath")); } function setpath(win) { |