From 42199a5714e59b3e70d6448f43569f91d666da95 Mon Sep 17 00:00:00 2001 From: Nikhil Narayana Date: Sat, 28 Nov 2020 21:30:38 -0800 Subject: [PATCH] fix setting the game path from the ISO selector --- app/actions/settings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/actions/settings.js b/app/actions/settings.js index 529c27e60..2ac61ffd0 100644 --- a/app/actions/settings.js +++ b/app/actions/settings.js @@ -67,7 +67,7 @@ export function browseFile(field) { // Maybe this should be done as some kind of callback or something... but this works if (field === "isoPath") { validateISO()(dispatch, getState); - getState().dolphinManager.setGamePath(filePath); + getState().settings.dolphinManager.setGamePath(filePath); } }; }