From 5f4d3da8679729d138344af3628e15df6030386b Mon Sep 17 00:00:00 2001 From: Aetias Date: Fri, 21 Jun 2024 11:30:48 +0200 Subject: [PATCH] Update build_system.md --- docs/build_system.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build_system.md b/docs/build_system.md index ee46340f..a81d6e4e 100644 --- a/docs/build_system.md +++ b/docs/build_system.md @@ -56,7 +56,7 @@ When the code is linked, all code of the same section will be written adjacent t ## Compiling code This game was written in C++, so most of the code we decompile will be in this programming language. In C++, we typically don't have to express which section we want the code to be written to. Instead, the compiler determines the section automatically. -Here are a few examples of how to +Here are a few examples of how to generate code for different section types. - `.text` - Functions and member functions (aka methods)