Advertisement
Guest User

Untitled

a guest
Dec 12th, 2015
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. // Boot menu configuration
  2. boot_config =
  3. {
  4. // Default timeout in secondes
  5. // If timeout = -1, disable autoboot
  6. timeout = 3;
  7.  
  8. // Some devices (n3ds?) seems to have
  9. // some timing problems when using timeout=0 (autoboot).
  10. // You may increase this value to improve boot success rate.
  11. // Default delay (8) should be good for o3ds, 2 seems good for n3ds
  12. autobootfix = 2;
  13.  
  14. // if timeout = 0 (autoboot),
  15. // hold this key to enter the menu
  16. // keycode list : https://goo.gl/4XLDIL
  17. recovery = 2; // SELECT
  18.  
  19. // Default boot entry
  20. default = 0;
  21.  
  22. // Boot menu entries (11 max)
  23. entries =
  24. (
  25. {
  26. title = "rxTools";
  27. path = "/bootRX.3dsx";
  28. },
  29. {
  30. title = "HomeBrewMenu";
  31. path = "/bootHBL.3dsx";
  32. }
  33. );
  34. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement