| View previous topic :: View next topic |
| Author |
Message |
Insert_witty_name
Joined: 10 May 2006 Posts: 376
|
Posted: Tue Apr 10, 2007 8:06 am Post subject: |
|
|
The sceGumScale bug has been fixed in the version I have (latest revision).
Hope that helps. |
|
| Back to top |
|
 |
PeterM
Joined: 31 Dec 2005 Posts: 125 Location: Edinburgh, UK
|
Posted: Tue Apr 10, 2007 8:26 am Post subject: |
|
|
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. |
|
| Back to top |
|
 |
PeterM
Joined: 31 Dec 2005 Posts: 125 Location: Edinburgh, UK
|
Posted: Thu Apr 12, 2007 9:24 pm Post subject: |
|
|
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: | 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. |
|
| Back to top |
|
 |
jimparis
Joined: 10 Jun 2005 Posts: 1179 Location: Boston
|
Posted: Fri Apr 13, 2007 6:04 am Post subject: |
|
|
| Patched, thanks. |
|
| Back to top |
|
 |
|