Skip to content

Commit

Permalink
fixed missingpath localization
Browse files Browse the repository at this point in the history
  • Loading branch information
0neGal committed Jan 3, 2022
1 parent ea8e9ac commit 0c30429
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

Expand Down
2 changes: 1 addition & 1 deletion src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 0c30429

Please sign in to comment.