fix: Made store downloads extract in their own folder
feat: Implemented cemu integration
This commit is contained in:
parent
09b8b9c6f8
commit
764691fc86
11 changed files with 156 additions and 52 deletions
|
|
@ -25,7 +25,7 @@ export default class DOLPHINIntegration implements PluginType
|
|||
{
|
||||
const args: string[] = [];
|
||||
|
||||
const storageFolder = path.join(config.get('downloadPath'), "storage", 'DOLPHIN');
|
||||
const storageFolder = path.join(config.get('downloadPath'), "storage", this.emulator);
|
||||
args.push(`--user=${storageFolder}`);
|
||||
|
||||
args.push(`--config=Dolphin.Display.Fullscreen=${config.get('launchInFullscreen') ? "True" : "False"}`);
|
||||
|
|
@ -35,7 +35,7 @@ export default class DOLPHINIntegration implements PluginType
|
|||
args.push(`--config=Dolphin.Interface.SkipNKitWarning=True`);
|
||||
args.push(`--config=Dolphin.Analytics.PermissionAsked=True`);
|
||||
|
||||
const savesPath = path.join(config.get('downloadPath'), "saves", 'DOLPHIN');
|
||||
const savesPath = path.join(config.get('downloadPath'), "saves", this.emulator);
|
||||
|
||||
args.push(`--config=Dolphin.General.WiiSDCardPath=${path.join(savesPath, 'WiiSD.raw')}`);
|
||||
args.push(`--config=Dolphin.General.WiiSDCardSyncFolder=${path.join(savesPath, 'WiiSDSync')}`);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue