aboutsummaryrefslogtreecommitdiff
path: root/src/modules/launch.js
diff options
context:
space:
mode:
author0neGal <mail@0negal.com>2023-07-31 14:59:14 +0200
committer0neGal <mail@0negal.com>2023-07-31 14:59:14 +0200
commit7298eac8ae23f406a2724ccd1a477c2bc7696f3d (patch)
tree20389cec537b1770f5ed3510e0fa175ef89ec599 /src/modules/launch.js
parentc1040516db8ec60b6922c989399f0fc43d8ab18a (diff)
downloadViper-7298eac8ae23f406a2724ccd1a477c2bc7696f3d.tar.gz
Viper-7298eac8ae23f406a2724ccd1a477c2bc7696f3d.zip
remove "error:" from console errors
Now they simply have the red color instead.
Diffstat (limited to 'src/modules/launch.js')
-rw-r--r--src/modules/launch.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/launch.js b/src/modules/launch.js
index af9939b..8801d1b 100644
--- a/src/modules/launch.js
+++ b/src/modules/launch.js
@@ -16,7 +16,7 @@ function launch(game_version) {
// return early, and show error message if on Linux
if (process.platform == "linux") {
win.alert(lang("cli.launch.linuxerror"));
- console.error("error:", lang("cli.launch.linuxerror"));
+ console.error(lang("cli.launch.linuxerror"));
cli.exit(1);
return;
}