summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDragorn421 <Dragorn421@users.noreply.github.com>2026-02-22 19:08:12 +0100
committerGitHub <noreply@github.com>2026-02-22 19:08:12 +0100
commitabdae818bda2f397c23e41078a4d89079b9fa7b8 (patch)
tree852c49d60db6b6c763dd4cd4168fff56546dce7a /tools
parentf2cb5ecb2f7c174d69c61ab1dfa6f7784050014e (diff)
Fix misc 23 (#2699)
* remove noop macros Fault_SetFontColor Fault_SetCharPad under PLATFORM_N64 * remove duplicate declarations in sfx.h * use render mode presets more * decimal for alpha values * fix some z_camera comments typos * fix references to preprocess.sh (used to be preprocess.py) * remove outdated comment on deps in makefile * code_800AD920 was renamed to z_viszbuf * fix capitalization typo: gOcarinaofTimeDesignTex -> gOcarinaOfTimeDesignTex * fix typo: gLinkAdultEyesClosedfTex, gLinkChildEyesClosedfTex -> remove extra f * fix typo: gCrstalSwitchRedTex, gCrstalSwitchBlueTex -> gCrystal * fix PARAMS_GET_U amount of bits
Diffstat (limited to 'tools')
-rwxr-xr-xtools/fix_bss.py2
-rwxr-xr-xtools/ido_block_numbers.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/fix_bss.py b/tools/fix_bss.py
index 743085cd1..6d13a794e 100755
--- a/tools/fix_bss.py
+++ b/tools/fix_bss.py
@@ -349,7 +349,7 @@ class BssSymbol:
INCREMENT_BLOCK_NUMBER_RE = re.compile(r"increment_block_number_(\d+)_(\d+)")
-# Find increment_block_number pragmas by parsing the symbol names generated by preprocess.py.
+# Find increment_block_number pragmas by parsing the symbol names generated by preprocess.sh.
# This is pretty ugly but it seems more reliable than trying to determine the line numbers of
# BSS variables in the C file.
def find_pragmas(symbol_table: list[SymbolTableEntry]) -> list[Pragma]:
diff --git a/tools/ido_block_numbers.py b/tools/ido_block_numbers.py
index 188cf8f36..dc7cc9954 100755
--- a/tools/ido_block_numbers.py
+++ b/tools/ido_block_numbers.py
@@ -497,7 +497,7 @@ def run_cfe(
command_line: list[str], keep_files: bool
) -> Tuple[list[SymbolTableEntry], list[UcodeOp]]:
# Assume command line is of the form:
- # python3 tools/preprocess.py [COMPILER] [COMPILER_ARGS] [INPUT_FILE]
+ # python3 tools/preprocess.sh [COMPILER] [COMPILER_ARGS] [INPUT_FILE]
input_file = Path(command_line[-1])
rest = command_line[:-1]