1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-21 04:24:43 +00:00

diff.py flags: remove -3, add -s

This commit is contained in:
cadmic 2024-01-27 11:43:26 -08:00
parent 4915a050eb
commit bfaae66c1d

View File

@ -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.