aboutsummaryrefslogtreecommitdiff
path: root/src/app
diff options
context:
space:
mode:
Diffstat (limited to 'src/app')
-rw-r--r--src/app/index.html4
-rw-r--r--src/app/main.js3
2 files changed, 5 insertions, 2 deletions
diff --git a/src/app/index.html b/src/app/index.html
index 263a903..b7b260d 100644
--- a/src/app/index.html
+++ b/src/app/index.html
@@ -15,8 +15,8 @@
<div class="line">
<div class="text">Launch:</div>
<div class="buttons">
- <button id="vanilla">Vanilla</button>
- <button id="northstar">Northstar</button>
+ <button id="vanilla" onclick="launchVanilla()">Vanilla</button>
+ <button id="northstar" onclick="launch()">Northstar</button>
</div>
</div>
</div>
diff --git a/src/app/main.js b/src/app/main.js
index 9783459..404e762 100644
--- a/src/app/main.js
+++ b/src/app/main.js
@@ -19,6 +19,9 @@ if (fs.existsSync(settings.file)) {
function update() {ipcRenderer.send("update")}
function setpath() {ipcRenderer.send("setpath")}
+function launch() {ipcRenderer.send("launch")}
+function launchVanilla() {ipcRenderer.send("launchVanilla")}
+
ipcRenderer.on("newpath", (event, newpath) => {
settings.gamepath = newpath;
})