xboxscene.org forums

Author Topic: Error Code When Returning To Dash  (Read 264 times)

esdubu

  • Archived User
  • Jr. Member
  • *
  • Posts: 94
Error Code When Returning To Dash
« on: May 10, 2005, 04:58:00 PM »

Remember reading somewhere a while ago that a few people were having problems returning to the dash when it was in the root of F:

It was giving an error code when returning from xbmc, this was forcing a reboot to fix it. I've just worked out a little code fix for this if anybody is interested?

Open Default.xip/default.xap and navigate to

if(e == 2) { TellUser("ERROR MESSAGE 2", "theMainMenu.GoTo()"); }
else { BlockUser("ERROR MESSAGE " + e); }

Just comment both these lines out and the error shouldn't appear anymore.

Sorry if this has been posted before!

This post has been edited by esdubu: May 10 2005, 11:59 PM
Logged

neovash

  • Archived User
  • Newbie
  • *
  • Posts: 4
Error Code When Returning To Dash
« Reply #1 on: August 02, 2005, 03:01:00 PM »

what should the code look like after it is edited because i dont think i did it right
Logged

KyesaRRi

  • Archived User
  • Full Member
  • *
  • Posts: 205
Error Code When Returning To Dash
« Reply #2 on: August 02, 2005, 03:32:00 PM »

If you comment:

CODE
if(e == 2) { TellUser("ERROR MESSAGE 2", "theMainMenu.GoTo()"); }
else { BlockUser("ERROR MESSAGE " + e); }


OUT then it will look somthing like:

CODE

//if(e == 2) { TellUser("ERROR MESSAGE 2", "theMainMenu.GoTo()"); }
//else { BlockUser("ERROR MESSAGE " + e); }


 -- KyesaRRi --
Logged