Want to help out with pspsdk? I mean REALLY help out?

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

Insert_witty_name
Posts: 376
Joined: Wed May 10, 2006 11:31 pm

Post by Insert_witty_name »

The sceGumScale bug has been fixed in the version I have (latest revision).

Hope that helps.
PeterM
Posts: 125
Joined: Sat Dec 31, 2005 7:25 pm
Location: Edinburgh, UK
Contact:

Post by PeterM »

Cool, thanks for the head's up.

Edit: I updated to the latest PSPSDK. That bug is indeed fixed.
http://aaiiee.wordpress.com/

I can no longer do any homebrew PSP development nor discuss PSP specific topics.
PeterM
Posts: 125
Joined: Sat Dec 31, 2005 7:25 pm
Location: Edinburgh, UK
Contact:

Post by PeterM »

I'd like to submit a patch to fix a bug in build.mak. The bug is where the rule to build $(PSP_EBOOT) actually builds EBOOT.PBP, not $(PSP_EBOOT). Hence if you override this variable, your EBOOT won't get built.

Here's the patch:

Code: Select all

Index: C:/cygwin/home/Pete/pspsdk/src/base/build.mak
===================================================================
--- C:/cygwin/home/Pete/pspsdk/src/base/build.mak	(revision 2213)
+++ C:/cygwin/home/Pete/pspsdk/src/base/build.mak	(working copy)
@@ -175,13 +175,13 @@
 
 ifeq ($(BUILD_PRX),1)
 $(PSP_EBOOT): $(TARGET).prx $(PSP_EBOOT_SFO)
-	$(PACK_PBP) EBOOT.PBP $(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_SND0)  $(TARGET).prx $(PSP_EBOOT_PSAR)
 else
 $(PSP_EBOOT): $(TARGET).elf $(PSP_EBOOT_SFO)
 	$(STRIP) $(TARGET).elf -o $(TARGET)_strip.elf
-	$(PACK_PBP) EBOOT.PBP $(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_SND0)  $(TARGET)_strip.elf $(PSP_EBOOT_PSAR)
 	-rm -f $(TARGET)_strip.elf
Hopefully I've submitted this patch in the right way.
http://aaiiee.wordpress.com/

I can no longer do any homebrew PSP development nor discuss PSP specific topics.
jimparis
Posts: 1145
Joined: Fri Jun 10, 2005 4:21 am
Location: Boston

Post by jimparis »

Patched, thanks.
Post Reply