From e6cff0c0089fe5e6f84b7d415c59f03ca8a48b38 Mon Sep 17 00:00:00 2001 From: cypress Date: Wed, 30 Oct 2024 08:59:50 -0700 Subject: [PATCH] Fix PSP build path on README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5b2b582..e473dd0 100644 --- a/README.md +++ b/README.md @@ -8,13 +8,13 @@ Building requires a full install of [psptoolchain](https://github.com/pspdev/psp With the psptoolchain installed, you now need to install `libpspmath`, which we have included in the GitHub repository: ```bash -cd source/libpspmath +cd source/psp/libpspmath make && make install ``` Now you can navigate back to the root of the repository and build an `EBOOT`. ```bash -cd ../../ +cd ../../../ make -f Makefile.psp install ```