Files
HackerOoT/.vscode/settings.json
Tharo e2bcacb436 A few debugging quality-of-life improvements (#134)
* Change macros that take file name and line number args to report the true file name and line number.
 * Ensure that (in debug builds) open/close disps always inserts the no-op debug markers.
 * Move sPrevTaskWorkBuffer to global gPrevTaskWorkBuffer for easy access to the address in the map file.
2024-06-16 00:34:53 +02:00

20 lines
369 B
JSON

{
"search.useIgnoreFiles": false,
"search.exclude": {
"**/.git": true,
".venv/**": true,
"baseroms/**": true,
"build/**": true,
"expected/**": true,
},
"files.associations": {
"*.c": "c",
"*.h": "c",
"*.inc": "c",
"*.inc.c": "c",
},
"editor.rulers": [
120
],
}