fix PSP_EBOOT_PIC0

This commit is contained in:
JoseAaronLopezGarcia
2025-12-21 20:26:28 +01:00
parent 463b22d413
commit 1ec3ceebf1

View File

@@ -102,8 +102,8 @@ ifndef PSP_EBOOT_ICON1
PSP_EBOOT_ICON1 = NULL PSP_EBOOT_ICON1 = NULL
endif endif
ifndef PSP_EBOOT_UNKPNG ifndef PSP_EBOOT_PIC0
PSP_EBOOT_UNKPNG = NULL PSP_EBOOT_PIC0 = NULL
endif endif
ifndef PSP_EBOOT_PIC1 ifndef PSP_EBOOT_PIC1
@@ -143,7 +143,7 @@ kxploit: $(TARGET).elf $(PSP_EBOOT_SFO)
$(STRIP) $(TARGET).elf -o $(TARGET)/$(PSP_EBOOT) $(STRIP) $(TARGET).elf -o $(TARGET)/$(PSP_EBOOT)
mkdir -p "$(TARGET)%" mkdir -p "$(TARGET)%"
$(PACK_PBP) "$(TARGET)%/$(PSP_EBOOT)" $(PSP_EBOOT_SFO) $(PSP_EBOOT_ICON) \ $(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) $(PSP_EBOOT_SND0) NULL $(PSP_EBOOT_PSAR)
SCEkxploit: $(TARGET).elf $(PSP_EBOOT_SFO) SCEkxploit: $(TARGET).elf $(PSP_EBOOT_SFO)
@@ -151,7 +151,7 @@ SCEkxploit: $(TARGET).elf $(PSP_EBOOT_SFO)
$(STRIP) $(TARGET).elf -o __SCE__$(TARGET)/$(PSP_EBOOT) $(STRIP) $(TARGET).elf -o __SCE__$(TARGET)/$(PSP_EBOOT)
mkdir -p "%__SCE__$(TARGET)" mkdir -p "%__SCE__$(TARGET)"
$(PACK_PBP) "%__SCE__$(TARGET)/$(PSP_EBOOT)" $(PSP_EBOOT_SFO) $(PSP_EBOOT_ICON) \ $(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) $(PSP_EBOOT_SND0) NULL $(PSP_EBOOT_PSAR)
ifeq ($(NO_FIXUP_IMPORTS), 1) ifeq ($(NO_FIXUP_IMPORTS), 1)
@@ -176,13 +176,13 @@ ifeq ($(ENCRYPT), 1)
- $(ENC) $(TARGET).prx $(TARGET).prx - $(ENC) $(TARGET).prx $(TARGET).prx
endif endif
$(PACK_PBP) $(PSP_EBOOT) $(PSP_EBOOT_SFO) $(PSP_EBOOT_ICON) \ $(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) $(PSP_EBOOT_SND0) $(TARGET).prx $(PSP_EBOOT_PSAR)
else else
$(PSP_EBOOT): $(TARGET).elf $(PSP_EBOOT_SFO) $(PSP_EBOOT): $(TARGET).elf $(PSP_EBOOT_SFO)
$(STRIP) $(TARGET).elf -o $(TARGET)_strip.elf $(STRIP) $(TARGET).elf -o $(TARGET)_strip.elf
$(PACK_PBP) $(PSP_EBOOT) $(PSP_EBOOT_SFO) $(PSP_EBOOT_ICON) \ $(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) $(PSP_EBOOT_SND0) $(TARGET)_strip.elf $(PSP_EBOOT_PSAR)
-rm -f $(TARGET)_strip.elf -rm -f $(TARGET)_strip.elf
endif endif