Skip to content

Commit 1ec3cee

Browse files
fix PSP_EBOOT_PIC0
1 parent 463b22d commit 1ec3cee

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/base/build.mak

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ ifndef PSP_EBOOT_ICON1
102102
PSP_EBOOT_ICON1 = NULL
103103
endif
104104

105-
ifndef PSP_EBOOT_UNKPNG
106-
PSP_EBOOT_UNKPNG = NULL
105+
ifndef PSP_EBOOT_PIC0
106+
PSP_EBOOT_PIC0 = NULL
107107
endif
108108

109109
ifndef PSP_EBOOT_PIC1
@@ -143,15 +143,15 @@ kxploit: $(TARGET).elf $(PSP_EBOOT_SFO)
143143
$(STRIP) $(TARGET).elf -o $(TARGET)/$(PSP_EBOOT)
144144
mkdir -p "$(TARGET)%"
145145
$(PACK_PBP) "$(TARGET)%/$(PSP_EBOOT)" $(PSP_EBOOT_SFO) $(PSP_EBOOT_ICON) \
146-
$(PSP_EBOOT_ICON1) $(PSP_EBOOT_UNKPNG) $(PSP_EBOOT_PIC1) \
146+
$(PSP_EBOOT_ICON1) $(PSP_EBOOT_PIC0) $(PSP_EBOOT_PIC1) \
147147
$(PSP_EBOOT_SND0) NULL $(PSP_EBOOT_PSAR)
148148

149149
SCEkxploit: $(TARGET).elf $(PSP_EBOOT_SFO)
150150
mkdir -p "__SCE__$(TARGET)"
151151
$(STRIP) $(TARGET).elf -o __SCE__$(TARGET)/$(PSP_EBOOT)
152152
mkdir -p "%__SCE__$(TARGET)"
153153
$(PACK_PBP) "%__SCE__$(TARGET)/$(PSP_EBOOT)" $(PSP_EBOOT_SFO) $(PSP_EBOOT_ICON) \
154-
$(PSP_EBOOT_ICON1) $(PSP_EBOOT_UNKPNG) $(PSP_EBOOT_PIC1) \
154+
$(PSP_EBOOT_ICON1) $(PSP_EBOOT_PIC0) $(PSP_EBOOT_PIC1) \
155155
$(PSP_EBOOT_SND0) NULL $(PSP_EBOOT_PSAR)
156156

157157
ifeq ($(NO_FIXUP_IMPORTS), 1)
@@ -176,13 +176,13 @@ ifeq ($(ENCRYPT), 1)
176176
- $(ENC) $(TARGET).prx $(TARGET).prx
177177
endif
178178
$(PACK_PBP) $(PSP_EBOOT) $(PSP_EBOOT_SFO) $(PSP_EBOOT_ICON) \
179-
$(PSP_EBOOT_ICON1) $(PSP_EBOOT_UNKPNG) $(PSP_EBOOT_PIC1) \
179+
$(PSP_EBOOT_ICON1) $(PSP_EBOOT_PIC0) $(PSP_EBOOT_PIC1) \
180180
$(PSP_EBOOT_SND0) $(TARGET).prx $(PSP_EBOOT_PSAR)
181181
else
182182
$(PSP_EBOOT): $(TARGET).elf $(PSP_EBOOT_SFO)
183183
$(STRIP) $(TARGET).elf -o $(TARGET)_strip.elf
184184
$(PACK_PBP) $(PSP_EBOOT) $(PSP_EBOOT_SFO) $(PSP_EBOOT_ICON) \
185-
$(PSP_EBOOT_ICON1) $(PSP_EBOOT_UNKPNG) $(PSP_EBOOT_PIC1) \
185+
$(PSP_EBOOT_ICON1) $(PSP_EBOOT_PIC0) $(PSP_EBOOT_PIC1) \
186186
$(PSP_EBOOT_SND0) $(TARGET)_strip.elf $(PSP_EBOOT_PSAR)
187187
-rm -f $(TARGET)_strip.elf
188188
endif

0 commit comments

Comments
 (0)