From 4141881c33fb386869a5cd512e9e19dc7f4cb683 Mon Sep 17 00:00:00 2001 From: Ethan Roseman Date: Mon, 25 Jan 2021 00:35:24 +0900 Subject: [PATCH] splat in configure --- configure.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.py b/configure.py index b1f2b1f394..db6195c54a 100755 --- a/configure.py +++ b/configure.py @@ -159,8 +159,8 @@ async def main(): cpp = args.cpp or "cpp" ccache = "ccache" if cmd_exists("ccache") else "" - # compile n64splat dependencies - await shell("make -C tools/n64splat") + # compile splat dependencies + await shell("make -C tools/splat") # split assets print("Splitting segments from baserom", end="")