Skip to content

Commit

Permalink
fix for alpha users not getting Ryujinx
Browse files Browse the repository at this point in the history
  • Loading branch information
dragoonDorise committed Aug 8, 2022
1 parent 82279f3 commit 67bb3ff
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion release/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "EmuDeck",
"version": "1.0.15",
"version": "1.0.16",
"description": "Play all your RetroGames",
"license": "MIT",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components
5 changes: 3 additions & 2 deletions src/renderer/pages/WelcomePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const WelcomePage = () => {
setState({ ...state, mode: value });
};

const { device, system, mode, command, second, branch } = state;
const { device, system, mode, command, second, branch, installEmus,overwriteConfigEmus } = state;

useEffect(() => {
//
Expand Down Expand Up @@ -60,7 +60,8 @@ const WelcomePage = () => {
useEffect(() => {
const settingsStorage = JSON.parse(localStorage.getItem('settings_emudeck'));
if (!!settingsStorage) {
setState({...state, ...settingsStorage});
//Theres probably a better way to do this...
setState({...state, ...settingsStorage, installEmus : state.installEmus, overwriteConfigEmus : state.overwriteConfigEmus});
setStatePage({ ...statePage, disabledNext: false });
}
if (cloned == false) {
Expand Down

0 comments on commit 67bb3ff

Please sign in to comment.