web analytics
Login

Follow XB3
Support XB3


Hot Products!
XBOX360 USB Pro

This is from helldoc’s dev blog !!

FSD 2.0 r643

I did finally figured out some stuff that been anoying us for a while yesterday!
There was a random freezing issue in the boot process and the game list was behaving really weird (games with no title…).
This being fixed will really change FSD 2.0 development to 2nd gear!

Another issue that i fixed yesterday is the string convertion problem : remember those gamelist screenshot with some square instead of special char?
This was caused by a bad string to wide string convertion. We were still using the code from original author, and while it work, it doesnt support special char.

Original code :
wstring strtowstr(string str)
{
wstring s(str.begin(), str.end());
s.assign(str.begin(),str.end());
return s;
}

Working code :
WCHAR* strtowchar(string str)
{
WCHAR* retVal;
int Length = MultiByteToWideChar(CP_UTF8,0,str.c_str(),-1,retVal,0);
retVal = new WCHAR[Length+1];
MultiByteToWideChar(CP_UTF8,0,str.c_str(),-1,retVal,Length);
return retVal;
}

By the way.. never call this 400 times per frame :P it will freeze the xbox! :P

Screenshot :
Cant remember if I explained this earlier : you’ll notice that fps was locked at 60 mostly because at 500 we at tearing issues.
See those fancy chars? :P
Here the basic music player. Gui is in no way final. I think this is mostly a proof of concept. It does work great!
Video Player. Playing a 720p wmvhd in preview window.
Video player playing 720p wmvhd full screen
Playing wmvhd 1080p video. Playing works great without and issue except the fact the the ratio is messed…
Share

No related posts.

Related posts brought to you by Yet Another Related Posts Plugin.

Leave a Reply

You must be logged in to post a comment.

torrent seedbox?
Search Logs
Archives
Affiliate