Skip to content

Commit

Permalink
Add bat format to file filter
Browse files Browse the repository at this point in the history
  • Loading branch information
SheffeyG committed Jul 13, 2024
1 parent a580403 commit 04a190d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/Normal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const Normal: VFC<{ appid: number }> = ({ appid }) => {
const handleBrowse = async () => {
const cheatDir = options.getFieldValue('PRESSURE_VESSEL_FILESYSTEMS_RW');
const defaultDir = cheatDir ? cheatDir : "/home/deck";
const filePickerRes = await Backend.openFilePicker(defaultDir, true, ["exe", "EXE"]);
const filePickerRes = await Backend.openFilePicker(defaultDir, true, ["exe", "bat"]);
const cheatPath = filePickerRes.path;
const newOptions = new Options(options.getOptionsString());
newOptions.setFieldValue('PROTON_REMOTE_DEBUG_CMD', `"${cheatPath}"`);
Expand Down Expand Up @@ -190,4 +190,4 @@ const Normal: VFC<{ appid: number }> = ({ appid }) => {
)
}

export default Normal
export default Normal

0 comments on commit 04a190d

Please sign in to comment.