From f02d012ce73913f021f0c018bdbe5caf6546268e Mon Sep 17 00:00:00 2001 From: Dragorn421 Date: Tue, 9 Jan 2024 21:22:51 +0100 Subject: [PATCH] add `OOT_DEBUG` define to vscode.md (#1607) --- docs/vscode.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/vscode.md b/docs/vscode.md index a828200618..6ba1ebcf37 100644 --- a/docs/vscode.md +++ b/docs/vscode.md @@ -54,7 +54,8 @@ You can create a `.vscode/c_cpp_properties.json` file with `C/C++: Edit Configur "include" ], "defines": [ - "_LANGUAGE_C" // For gbi.h + "_LANGUAGE_C", // For gbi.h + "OOT_DEBUG" // If targeting a debug version ], "cStandard": "gnu89", // C89 + some GNU extensions from C99 like C++ comments "cppStandard": "${default}" // Only ZAPD uses C++, so doesn't really matter