![]() |
| Forums | Gaming News | Videos | Downloads | Today's Posts | Mark Forums Read | Chat | FAQ | Members List | Contact |
| ||||||
This is a discussion on [update] Ebootr (second QJ Release) within the PSP Development Forum forums, part of the PSP Development, Hacks, and Homebrew category; I'm baaaack! Originally Posted by the readme Ebootr 1.0.3540.37398 "A kick in the pants" *** WARNING *** This is BETA ...
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 | |
![]() ![]() Join Date: Apr 2009
Real First Name: Morgan
Location: Around black mesa.
Just Played: SMB
Posts: 83
Trader Feedback: 0
|
I'm baaaack!
Quote:
![]() Plus, I now have some kind of XMB preview! ![]() Get yourself edumacated with the Documentation (Included in the download) Download it: http://sonof.bandit.name/files/Eboot...r_release2.zipIf you notice any inconsistencies within the interface, please note them! I would really appreciate it. |
|
|
|
|
|
|
#3 |
![]() ![]() Developer
|
works for me. yeh. good job
__________________
Heres to the Wyvern, Heres to getting Wyvern, Heres to staying Wyvern, And if you can't get Wyvern....... You should become a kingsman! http://arnold.hyperphp.com/ arnold, Light_AleX and my releases D² |
|
|
|
|
|
#4 |
![]() ![]() Join Date: Apr 2009
Real First Name: Morgan
Location: Around black mesa.
Just Played: SMB
Posts: 83
Trader Feedback: 0
|
Thanks man, I've put a lot of effort into making it work as best as I can.
If you get any bug reports dumped to your desktop, attach them here or send them to me in PM. |
|
|
|
|
|
#6 |
![]() ![]() Join Date: Apr 2009
Real First Name: Morgan
Location: Around black mesa.
Just Played: SMB
Posts: 83
Trader Feedback: 0
|
OK Guys I need y'all to confirm a bug.
Apparently, this chunk of code isnt letting go of the file handles: Code:
private bool BlockWriteFileFromEboot(string filename, EbootFile ebf)
{
// we're going to try and write the file
FileStream fsk = null;
try
{
fsk = new FileStream(filename, FileMode.Create, FileAccess.Write);
writing_file.Text = GetLogicalFilename(ebf);
writing_progress.Text = "Reading from eboot...";
Application.DoEvents();
byte[] q = eb.getFile(ebf);
Application.DoEvents();
blockWriteToFile(fsk, q);
Application.DoEvents();
writing_file.Text = "";
return true;
}
catch
{
// make sure our file handle is clsoed.
try { if (fsk != null) { fsk.Close(); } }
catch { }
return false;
}
}
|
|
|
|
|
|
#7 |
![]() ![]() Join Date: Apr 2009
Real First Name: Morgan
Location: Around black mesa.
Just Played: SMB
Posts: 83
Trader Feedback: 0
|
OK here's the pushed out bugfix version:
http://sonof.bandit.name/files/Eboot...3542.10650.zip New documentation is included, and there's a few nice fixes ![]() the source code included does not include these fixes! Last edited by indrora; 09-13-2009 at 07:14 PM.. |
|
|
|
![]() |
| Tags |
| code included , ebootr , release , update |
| Thread Tools | |
|
|