forked from switchbrew/nx-hbloader
-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make ovlloader not crash everything when ovlmenu isn't found. Exit sa…
…nely
- Loading branch information
Showing
4 changed files
with
54 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "DKP Aarch64 Windows", | ||
"includePath": [ | ||
"C:/devkitPro/devkitA64/aarch64-none-elf/include/**", | ||
"C:/devkitPro/devkitA64/lib/gcc/aarch64-none-elf/8.3.0/include/**", | ||
"C:/devkitPro/libnx/include/**", | ||
"C:/devkitPro/portlibs/switch/include/**" | ||
], | ||
"defines": [ | ||
"SWITCH", | ||
"VERSION=\"\"", | ||
"__SWITCH__", | ||
"__aarch64__" | ||
], | ||
"compilerPath": "C:/devkitPro/devkitA64/bin/aarch64-none-elf-g++", | ||
"cStandard": "c11", | ||
"cppStandard": "c++17", | ||
"intelliSenseMode": "gcc-x64" | ||
}, | ||
{ | ||
"name": "DKP Aarch64 Linux", | ||
"includePath": [ | ||
"/opt/devkitpro/devkitA64/aarch64-none-elf/include/**", | ||
"/opt/devkitpro/devkitA64/lib/gcc/aarch64-none-elf/8.3.0/include/**", | ||
"/opt/devkitpro/libnx/include/**", | ||
"/opt/devkitpro/portlibs/switch/include/**" | ||
], | ||
"defines": [ | ||
"SWITCH", | ||
"VERSION=\"\"", | ||
"__SWITCH__", | ||
"__aarch64__" | ||
], | ||
"compilerPath": "/opt/devkitpro/devkitA64/bin/aarch64-none-elf-g++", | ||
"cStandard": "c11", | ||
"cppStandard": "c++17", | ||
"intelliSenseMode": "gcc-x64" | ||
} | ||
], | ||
"version": 4 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters