You've already forked Microtransactions64
mirror of
https://github.com/Print-and-Panic/Microtransactions64.git
synced 2026-01-21 10:17:19 -08:00
* Bugfix: race condition with accessing cleared audio memory pools * Bugfix: skyboxes access tiles out of range when looking straight down (#518) * Vscode fixes (#516) * Revert s32 angles and remove Angle typedef usage (#529) * Fix some surface shadowing (#531) * Delete rtc.h * Remove `wait_for_audio_frames()` Co-authored-by: thecozies <79979276+thecozies@users.noreply.github.com> Co-authored-by: Arceveti <73617174+Arceveti@users.noreply.github.com> Co-authored-by: JoshDuMan <40190173+JoshDuMan@users.noreply.github.com>
41 lines
1.5 KiB
JSON
41 lines
1.5 KiB
JSON
{
|
|
"configurations": [
|
|
{
|
|
"name": "Linux",
|
|
"includePath": [
|
|
"${workspaceFolder}/include/n64/**",
|
|
"${workspaceFolder}/include/**",
|
|
"${workspaceFolder}/textures/**",
|
|
"${workspaceFolder}/build/us_n64/**",
|
|
"${workspaceFolder}/**"
|
|
],
|
|
"forcedInclude": [
|
|
"${workspaceFolder}/include/types.h",
|
|
"${workspaceFolder}/include/n64/ultra64.h",
|
|
"${workspaceFolder}/include/sm64.h",
|
|
"${workspaceFolder}/include/config.h",
|
|
"${workspaceFolder}/include/make_const_nonconst.h",
|
|
"${workspaceFolder}/include/geo_commands.h",
|
|
"${workspaceFolder}/include/level_commands.h",
|
|
"${workspaceFolder}/include/segment_symbols.h",
|
|
"${workspaceFolder}/include/command_macros_base.h",
|
|
"${workspaceFolder}/include/object_constants.h"
|
|
],
|
|
"defines": [
|
|
"TARGET_N64=1",
|
|
"VERSION_US=1",
|
|
"F3DEX_GBI_2=1",
|
|
"F3DZEX_NON_GBI_2=1",
|
|
"F3DEX_GBI_SHARED=1",
|
|
"NON_MATCHING=1",
|
|
"AVOID_UB=1"
|
|
],
|
|
"compilerPath": "/usr/bin/mips-linux-gnu-gcc",
|
|
"cStandard": "gnu17",
|
|
"cppStandard": "gnu++14",
|
|
"intelliSenseMode": "linux-gcc-x86"
|
|
}
|
|
],
|
|
"version": 4
|
|
}
|