docs: fix cheatsheet link (#125)

This commit is contained in:
tetraxile 2024-06-30 10:55:06 +01:00 committed by GitHub
parent 0326bbbeb6
commit 180957e93c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -58,7 +58,7 @@ CLion interacts with CMake directly, so you need to make sure CLion's build prof
* Understanding the function is very important.
* Rename variables, add structures, do everything you can to make the output as clean as possible.
* C++ code tends to make heavy use of inline functions. For example, inlined string comparisons or copies are very common and tend to obscure what the function does. Focus on the outline of the function.
* The [cheatsheet](https://github.com/zeldaret/botw/blob/master/Cheatsheet.md) (of the BotW project) might help you recognize inline functions.
* The [cheatsheet](https://botw.link/cheatsheet) (of the BotW project) might help you recognize inline functions.
3. **Implement the function in C++.**
* Stay close to the original code, but not too close: your code should mostly look like normal, clean C++ code. If it does not, chances are that you won't get a good match at all.