From 1ec3ceebf147f8a8d9bbeead3a8a82efbf5389ba Mon Sep 17 00:00:00 2001 From: JoseAaronLopezGarcia Date: Sun, 21 Dec 2025 20:26:28 +0100 Subject: [PATCH] fix PSP_EBOOT_PIC0 --- src/base/build.mak | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/base/build.mak b/src/base/build.mak index 24351741..10b3c9fe 100644 --- a/src/base/build.mak +++ b/src/base/build.mak @@ -102,8 +102,8 @@ ifndef PSP_EBOOT_ICON1 PSP_EBOOT_ICON1 = NULL endif -ifndef PSP_EBOOT_UNKPNG -PSP_EBOOT_UNKPNG = NULL +ifndef PSP_EBOOT_PIC0 +PSP_EBOOT_PIC0 = NULL endif ifndef PSP_EBOOT_PIC1 @@ -143,7 +143,7 @@ kxploit: $(TARGET).elf $(PSP_EBOOT_SFO) $(STRIP) $(TARGET).elf -o $(TARGET)/$(PSP_EBOOT) mkdir -p "$(TARGET)%" $(PACK_PBP) "$(TARGET)%/$(PSP_EBOOT)" $(PSP_EBOOT_SFO) $(PSP_EBOOT_ICON) \ - $(PSP_EBOOT_ICON1) $(PSP_EBOOT_UNKPNG) $(PSP_EBOOT_PIC1) \ + $(PSP_EBOOT_ICON1) $(PSP_EBOOT_PIC0) $(PSP_EBOOT_PIC1) \ $(PSP_EBOOT_SND0) NULL $(PSP_EBOOT_PSAR) SCEkxploit: $(TARGET).elf $(PSP_EBOOT_SFO) @@ -151,7 +151,7 @@ SCEkxploit: $(TARGET).elf $(PSP_EBOOT_SFO) $(STRIP) $(TARGET).elf -o __SCE__$(TARGET)/$(PSP_EBOOT) mkdir -p "%__SCE__$(TARGET)" $(PACK_PBP) "%__SCE__$(TARGET)/$(PSP_EBOOT)" $(PSP_EBOOT_SFO) $(PSP_EBOOT_ICON) \ - $(PSP_EBOOT_ICON1) $(PSP_EBOOT_UNKPNG) $(PSP_EBOOT_PIC1) \ + $(PSP_EBOOT_ICON1) $(PSP_EBOOT_PIC0) $(PSP_EBOOT_PIC1) \ $(PSP_EBOOT_SND0) NULL $(PSP_EBOOT_PSAR) ifeq ($(NO_FIXUP_IMPORTS), 1) @@ -176,13 +176,13 @@ ifeq ($(ENCRYPT), 1) - $(ENC) $(TARGET).prx $(TARGET).prx endif $(PACK_PBP) $(PSP_EBOOT) $(PSP_EBOOT_SFO) $(PSP_EBOOT_ICON) \ - $(PSP_EBOOT_ICON1) $(PSP_EBOOT_UNKPNG) $(PSP_EBOOT_PIC1) \ + $(PSP_EBOOT_ICON1) $(PSP_EBOOT_PIC0) $(PSP_EBOOT_PIC1) \ $(PSP_EBOOT_SND0) $(TARGET).prx $(PSP_EBOOT_PSAR) else $(PSP_EBOOT): $(TARGET).elf $(PSP_EBOOT_SFO) $(STRIP) $(TARGET).elf -o $(TARGET)_strip.elf $(PACK_PBP) $(PSP_EBOOT) $(PSP_EBOOT_SFO) $(PSP_EBOOT_ICON) \ - $(PSP_EBOOT_ICON1) $(PSP_EBOOT_UNKPNG) $(PSP_EBOOT_PIC1) \ + $(PSP_EBOOT_ICON1) $(PSP_EBOOT_PIC0) $(PSP_EBOOT_PIC1) \ $(PSP_EBOOT_SND0) $(TARGET)_strip.elf $(PSP_EBOOT_PSAR) -rm -f $(TARGET)_strip.elf endif