+ T + Posted September 10, 2005 Author Share Posted September 10, 2005 To be honest, I'm not in any great hurry to fix this since the exact same code works perfectly in the 08/02 based build. The problem must be caused by changes to the FBA-XXX code in 08/26. So I would suggest using the patch2 build for now. I've been considering putting together a best-of-both build that would add several of the improvements from 08/26 with (hopefully) none of the bugs. Then this would be the only FBA-XXX Pro build and we'd be back to just one patch. Link to comment Share on other sites More sharing options...
+ T + Posted September 11, 2005 Author Share Posted September 11, 2005 UPDATE: Okay, here it is. This new FBA-XXX Pro build combines the fixes and features of FBA-XXX 08/26 with the stability of 08/02 and of course the Pro ROMsets. Everything I've tested on it plays perfectly but please let me know if you come across any problems. Link to comment Share on other sites More sharing options...
Thraxen Posted September 12, 2005 Share Posted September 12, 2005 Thanks +T+, I really appreciate your continued work on Pro and keeping up with Gogo's changes. I know a while back you commented you were growing tired of working with Pro, so the work in keeping Pro current with Gogo's version is greatly appreciated. Link to comment Share on other sites More sharing options...
Gibo Posted September 12, 2005 Share Posted September 12, 2005 Gracias otra vez! Link to comment Share on other sites More sharing options...
Prican25 Posted September 12, 2005 Share Posted September 12, 2005 nice job, thx again Link to comment Share on other sites More sharing options...
modinside Posted September 13, 2005 Share Posted September 13, 2005 Thanks a Lot. Link to comment Share on other sites More sharing options...
Mr.X Posted September 13, 2005 Share Posted September 13, 2005 The crappy bootleg set KoF 10th Extra Plus 's officially released. Link to comment Share on other sites More sharing options...
+ T + Posted September 13, 2005 Author Share Posted September 13, 2005 (edited) The crappy bootleg set KoF 10th Extra Plus 's officially released.Is this a genuine bootleg or just another ROM hack? EDIT: What's up with Gogo's forum, BTW? Edited September 13, 2005 by + T + Link to comment Share on other sites More sharing options...
Mr.X Posted September 13, 2005 Share Posted September 13, 2005 The bootleg cart of this game was sold @eBay. Link to comment Share on other sites More sharing options...
+ T + Posted September 13, 2005 Author Share Posted September 13, 2005 (edited) Do you happen to have a driver for it? If so I'll be sure and add it to the next build of FBA-XXX Pro. Thanks. Edited September 13, 2005 by + T + Link to comment Share on other sites More sharing options...
iq_132 Posted September 13, 2005 Share Posted September 13, 2005 (edited) It should be something like this... I haven't tested this yet, but it should work. // Code by IQ_132 // Thanks to JotaCE, Jimmy_page, // and Robber804 for some info static void kf10thepDecrypt() { // Fix for FBA program load problems BurnLoadRom(Neo68KROM + 0x200000, 1, 1); BurnLoadRom(Neo68KROM + 0x600000, 2, 1); int i; unsigned char *src = Neo68KROM; unsigned char *dst = (unsigned char*)malloc(0x800000); unsigned int sec[8] = { 0x3, 0x8, 0x7, 0xC, 0x1, 0xA, 0x6, 0xD }; for (i = 0; i < 8; i++) { memcpy (dst + i * 0x20000, src + sec[i] * 0x20000, 0x20000); } memcpy(dst + 0x0002e0, src + 0x0402e0, 0x06a); memcpy(dst + 0x0f92bc, src + 0x0492bc, 0xb9e); for (i = 0xf92bc; i < 0xf9e58; i += 2) { if (*((unsigned short*)(dst + i + 0)) == 0x4eb9 || *((unsigned short*)(dst + i + 0)) == 0x4ef9) { if (*((unsigned short*)(dst + i + 2)) == 0x0000) { *((unsigned short*)(dst + i + 2)) = 0x000F; } } } dst[0x00342] = 0x0f; memcpy (dst + 0x100000, src + 0x200000, 0x600000); memcpy (src, dst, 0x800000); } Edited September 13, 2005 by iq_132 Link to comment Share on other sites More sharing options...
Recommended Posts