Fixed settings.json (#84)

* Fixed settings.json

* Readded fox_i1
This commit is contained in:
Lywx 2024-01-16 09:58:30 -06:00 committed by GitHub
parent 8bf3781f9e
commit b975246483
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

98
.vscode/settings.json vendored
View File

@ -1,51 +1,51 @@
{ {
"python.formatting.autopep8Args": [ "python.formatting.autopep8Args": [
"--ignore", "--ignore",
"E402" "E402"
], ],
"search.useIgnoreFiles": false, "search.useIgnoreFiles": false,
"search.exclude": { "search.exclude": {
"**/.git": true, "**/.git": true,
"**/.github": true, "**/.github": true,
"build/**": true, "build/**": true,
"expected/**": true, "expected/**": true,
"tools/**": true, "tools/**": true
}, },
"defines": [ "defines": [
"_LANGUAGE_C", // For gbi.h "_LANGUAGE_C"
], ],
"files.associations": { "files.associations": {
"hud.h": "c", "hud.h": "c",
"global.h": "c", "global.h": "c",
"ultratypes.h": "c", "ultratypes.h": "c",
"mbi.h": "c", "mbi.h": "c",
"common.h": "c", "common.h": "c",
"sf64math.h": "c", "sf64math.h": "c",
"ultra64.h": "c", "ultra64.h": "c",
"os_internal.h": "c", "os_internal.h": "c",
"structs.h": "c", "structs.h": "c",
"stdint.h": "c", "stdint.h": "c",
"xstdio.h": "c", "xstdio.h": "c",
"controller.h": "c", "controller.h": "c",
"os_version.h": "c", "os_version.h": "c",
"stdbool.h": "c", "stdbool.h": "c",
"variables.h": "c", "variables.h": "c",
"functions.h": "c", "functions.h": "c",
"macros.h": "c", "macros.h": "c",
"random": "c", "random": "c",
"limits": "c", "limits": "c",
"algorithm": "c", "algorithm": "c",
"dfee30.h": "c", "dfee30.h": "c",
"fox_i1.h": "c", "fox_i1.h": "c",
"symbol_addrs_overlays": "cpp", "symbol_addrs_overlays": "cpp",
"string.h": "c", "string.h": "c",
"stdarg.h": "c", "stdarg.h": "c",
"fox_option.h": "c", "fox_option.h": "c",
"cstdlib": "c", "cstdlib": "c",
"typeinfo": "c", "typeinfo": "c",
"sym_addrs_funcs": "c", "sym_addrs_funcs": "c",
"*.txt": "c" "*.txt": "c",
"typeinfo": "c", "fox_title.h": "c"
"fox_title.h": "c" },
}, "C_Cpp_Runner.msvcBatchPath": ""
} }