feat: Implemented romm saves for dolphin and xenia
feat: Implemented save backups for emulatorjs fix: Added support for rar archives fix: Moved to individual ini adjustments for pcsx2 and ppsspp to allow for user editing of configs
This commit is contained in:
parent
54dd9256e3
commit
7948bd24fa
36 changed files with 1103 additions and 243 deletions
9
src/mainview/types.d.ts
vendored
9
src/mainview/types.d.ts
vendored
|
|
@ -60,4 +60,11 @@ declare interface FilterOption extends FocusParams, InteractParams
|
|||
label: string;
|
||||
selected: boolean;
|
||||
icon?: any;
|
||||
}
|
||||
}
|
||||
|
||||
declare type EmulatorJsMessage = { type: 'restart'; } |
|
||||
{ type: 'pause'; paused: boolean; } |
|
||||
{ type: 'exit'; save?: File; } |
|
||||
{ type: 'save', save: File, screenshot?: File, type: string; } |
|
||||
{ type: 'loaded'; } |
|
||||
{ type: 'requestSave'; };
|
||||
Loading…
Add table
Add a link
Reference in a new issue