diff options
| author | cadmic <cadmic24@gmail.com> | 2024-08-26 08:43:59 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-26 11:43:59 -0400 |
| commit | 37955748782bd1b3019d4192543b518c39312793 (patch) | |
| tree | 0d5b1eea87c8291dfd111807c88236b0124dc995 /docs | |
| parent | c6d29691d0dbf9c9a0c68b1fed61b8415d01c758 (diff) | |
Add all N64 version defines (#2095)
* Add all N64 ROMs to versions.h
* Remove OOT_ prefix from version defines
* Make it pretty
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/c_cpp_properties.json | 18 | ||||
| -rw-r--r-- | docs/vscode.md | 2 |
2 files changed, 10 insertions, 10 deletions
diff --git a/docs/c_cpp_properties.json b/docs/c_cpp_properties.json index 64e468330..8f3d0ea55 100644 --- a/docs/c_cpp_properties.json +++ b/docs/c_cpp_properties.json @@ -15,7 +15,7 @@ ], "defines": [ "_LANGUAGE_C", - "OOT_VERSION=OOT_NTSC_1_2", + "OOT_VERSION=NTSC_1_2", "OOT_REGION=REGION_JP", "PLATFORM_N64=1", "PLATFORM_GC=0", @@ -42,7 +42,7 @@ ], "defines": [ "_LANGUAGE_C", - "OOT_VERSION=OOT_GC_JP", + "OOT_VERSION=GC_JP", "OOT_REGION=REGION_JP", "PLATFORM_N64=0", "PLATFORM_GC=1", @@ -71,7 +71,7 @@ ], "defines": [ "_LANGUAGE_C", - "OOT_VERSION=OOT_GC_JP_MQ", + "OOT_VERSION=GC_JP_MQ", "OOT_REGION=REGION_JP", "PLATFORM_N64=0", "PLATFORM_GC=1", @@ -100,7 +100,7 @@ ], "defines": [ "_LANGUAGE_C", - "OOT_VERSION=OOT_GC_US", + "OOT_VERSION=GC_US", "OOT_REGION=REGION_US", "PLATFORM_N64=0", "PLATFORM_GC=1", @@ -129,7 +129,7 @@ ], "defines": [ "_LANGUAGE_C", - "OOT_VERSION=OOT_GC_US_MQ", + "OOT_VERSION=GC_US_MQ", "OOT_REGION=REGION_US", "PLATFORM_N64=0", "PLATFORM_GC=1", @@ -158,7 +158,7 @@ ], "defines": [ "_LANGUAGE_C", - "OOT_VERSION=OOT_GC_EU_MQ_DBG", + "OOT_VERSION=GC_EU_MQ_DBG", "OOT_REGION=REGION_EU", "PLATFORM_N64=0", "PLATFORM_GC=1", @@ -187,7 +187,7 @@ ], "defines": [ "_LANGUAGE_C", - "OOT_VERSION=OOT_GC_EU", + "OOT_VERSION=GC_EU", "OOT_REGION=REGION_EU", "PLATFORM_N64=0", "PLATFORM_GC=1", @@ -216,7 +216,7 @@ ], "defines": [ "_LANGUAGE_C", - "OOT_VERSION=OOT_GC_EU_MQ", + "OOT_VERSION=GC_EU_MQ", "OOT_REGION=REGION_EU", "PLATFORM_N64=0", "PLATFORM_GC=1", @@ -245,7 +245,7 @@ ], "defines": [ "_LANGUAGE_C", - "OOT_VERSION=OOT_GC_JP_CE", + "OOT_VERSION=GC_JP_CE", "OOT_REGION=REGION_JP", "PLATFORM_N64=0", "PLATFORM_GC=1", diff --git a/docs/vscode.md b/docs/vscode.md index a50f3c53a..44b1e6837 100644 --- a/docs/vscode.md +++ b/docs/vscode.md @@ -60,7 +60,7 @@ A more complete `c_cpp_properties.json` with configurations for all supported ve "defines": [ "_LANGUAGE_C", // For gbi.h // Version-specific - "OOT_VERSION=OOT_GC_EU_MQ_DBG", + "OOT_VERSION=GC_EU_MQ_DBG", "OOT_REGION=REGION_EU", "PLATFORM_N64=0", "PLATFORM_GC=1", |
