From 5d1efcfec34c4ceda7dd42a47c22b9486be3e59f Mon Sep 17 00:00:00 2001 From: David Benepe Date: Sun, 13 Jun 2021 15:29:47 -0500 Subject: [PATCH] Fixed issues with README.md & updated diff.sh --- README.md | 12 +++++++----- diff.sh | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index eadb31ac..28b27f48 100755 --- a/README.md +++ b/README.md @@ -29,7 +29,9 @@ Currently, only the US 1.0 version of the game is supported. US 1.1, EU 1.0, EU ## Modding -If you are modifying the code in the repo, then you should add `NON_MATCHING=1` to the make command: `make NON_MATCHING=1 -j4` +If you are modifying the code in the repo, then you should add `NON_MATCHING=1` to the make command. + +Example: `make NON_MATCHING=1 -j4` ## Style Guide @@ -87,10 +89,10 @@ The scoring is split into 2 sections: 1. Assembly to C Decompilation (Adventure One) 2. Cleanup and Documentation (Adventure Two) -Show scores for Adventure One & Adventure Two: `./score.sh` -Show score for Adventure One only: `./score.sh -a 1` -Show score for Adventure Two only: `./score.sh -a 2` -Show top 10 files remaining: `./score.sh -t 10` +Show scores for Adventure One & Adventure Two: `./score.sh` +Show score for Adventure One only: `./score.sh -a 1` +Show score for Adventure Two only: `./score.sh -a 2` +Show top 10 files remaining: `./score.sh -t 10` To make progress in Adventure 2, a function must be properly named (must not start with `func_`) and also include a doxygen comment above it. diff --git a/diff.sh b/diff.sh index 876e8c83..74648715 100755 --- a/diff.sh +++ b/diff.sh @@ -1 +1 @@ -python3 tools/python/diff.py "$1" \ No newline at end of file +python3 tools/python/diff.py "$@" \ No newline at end of file