From bfaae66c1d02719e706734be9503e78d2b3f104b Mon Sep 17 00:00:00 2001 From: cadmic Date: Sat, 27 Jan 2024 11:43:26 -0800 Subject: [PATCH] diff.py flags: remove -3, add -s --- docs/retail_versions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/retail_versions.md b/docs/retail_versions.md index 61162eda53..fd9622a18c 100644 --- a/docs/retail_versions.md +++ b/docs/retail_versions.md @@ -138,7 +138,7 @@ all files, run `./retail_progress.py` with no arguments. To diff assembly for a single function in `gc-eu-mq`, run e.g. ```sh -./diff.py -mwo3 -v gc-eu-mq Math3D_CylTriVsIntersect +./diff.py -mwos -v gc-eu-mq Math3D_CylTriVsIntersect ``` The `-v` flag tells `diff.py` to compare between `build/gc-eu-mq` and @@ -147,7 +147,7 @@ The `-v` flag tells `diff.py` to compare between `build/gc-eu-mq` and You may also want to diff the Debug ROM in another terminal with ```sh -./diff.py -mwo3 Math3D_CylTriVsIntersect +./diff.py -mwos Math3D_CylTriVsIntersect ``` to ensure any changes still match there.