Skip to content

Commit

Permalink
chore: remove extension for UNF on Windows
Browse files Browse the repository at this point in the history
It is unnecessary
  • Loading branch information
anacierdem committed Sep 30, 2024
1 parent b8a3ecc commit 9c6a32e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
9 changes: 0 additions & 9 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
"type": "cppvsdbg",
"request": "launch",
"name": "Test Bench",
"windows": {
"program": "UNFLoader.exe"
},
"program": "UNFLoader",
"args": ["-b", "-d", "-r", "${workspaceFolder}/src/test_bench.z64"],
"preLaunchTask": "build",
Expand All @@ -34,9 +31,6 @@
"type": "cppvsdbg",
"request": "launch",
"name": "Tests",
"windows": {
"program": "UNFLoader.exe"
},
"program": "UNFLoader",
"args": [
"-b",
Expand Down Expand Up @@ -64,9 +58,6 @@
"type": "cppvsdbg",
"request": "launch",
"name": "Run selected example",
"windows": {
"program": "UNFLoader.exe"
},
"program": "UNFLoader",
"args": [
"-b",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ The root `bench` recipe is for building the code in root `src` folder. This is a
There are also vscode launch configurations to quickly build the examples, tests and the bench. If you have the `N64_EMU` environment variable set pointing at your favourite emulator ([ares](https://ares-emu.net/) is highly recommended), the launch configurations ending in `(emu)` will kick your emulator with the selected example/code. You can also just hit F5 to launch the selected configuration. For the examples configuration, you can navigate to the relevant `.c` file and `Run selected example` will start it most of the time. In some cases, the output ROM name may not match the `.c` file and in those cases, you can select the ROM file and it should work.

> [!NOTE]
> This repository also uses [UNFLoader](https://github.com/buu342/N64-UNFLoader), so you can use the launch configurations without `(emu)` to run the code if you have a supported flashcart plugged in and have UNFLoader executable on your `PATH`.
> This repository also uses [UNFLoader](https://github.com/buu342/N64-UNFLoader), so you can use the launch configurations without `(emu)` to run the code if you have a supported flashcart plugged in and have `UNFLoader` executable on your `PATH`.
You can clean everything with the `clean` recipe/task (open the command palette and choose `Run Task -> clean`).

Expand Down

0 comments on commit 9c6a32e

Please sign in to comment.