Remove now-unnecessary indentation of code blocks

This commit is contained in:
Rangi42
2024-02-18 15:02:17 -05:00
parent 2dee0fc536
commit bd56405aae

View File

@@ -29,14 +29,14 @@ online for various platforms. [Building from source](https://rgbds.gbdev.io/inst
is possible using `make` or `cmake`; follow the link for more detailed instructions. is possible using `make` or `cmake`; follow the link for more detailed instructions.
```sh ```sh
make make
sudo make install sudo make install
``` ```
```sh ```sh
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build cmake --build build
cmake --install build cmake --install build
``` ```
## 2. RGBDS Folder Organization ## 2. RGBDS Folder Organization
@@ -44,41 +44,41 @@ is possible using `make` or `cmake`; follow the link for more detailed instructi
The RGBDS source code file structure is as follows: The RGBDS source code file structure is as follows:
``` ```
. .
├── .github/ ├── .github/
│ ├── scripts/ │ ├── scripts/
│ │ └── ... │ │ └── ...
│ └── workflows/ │ └── workflows/
│ └── ... │ └── ...
├── contrib/ ├── contrib/
│ ├── zsh_compl/ │ ├── zsh_compl/
│ │ └── ... │ │ └── ...
│ └── ... │ └── ...
├── include/ ├── include/
│ └── ... │ └── ...
├── man/ ├── man/
│ └── ... │ └── ...
├── src/ ├── src/
│ ├── asm/ │ ├── asm/
│ │ └── ... │ │ └── ...
│ ├── extern/ │ ├── extern/
│ │ └── ... │ │ └── ...
│ ├── fix/ │ ├── fix/
│ │ └── ... │ │ └── ...
│ ├── gfx/ │ ├── gfx/
│ │ └── ... │ │ └── ...
│ ├── link/ │ ├── link/
│ │ └── ... │ │ └── ...
│ ├── CMakeLists.txt │ ├── CMakeLists.txt
│ └── ... │ └── ...
├── test/ ├── test/
│ ├── ... │ ├── ...
│ └── run-tests.sh │ └── run-tests.sh
├── .clang-format ├── .clang-format
├── CMakeLists.txt ├── CMakeLists.txt
├── Dockerfile ├── Dockerfile
├── Makefile ├── Makefile
└── README.md └── README.md
``` ```
- `.github/` - files and scripts related to the integration of the RGBDS codebase with - `.github/` - files and scripts related to the integration of the RGBDS codebase with