Advertisement
NightFox

Untitled

Jul 23rd, 2011
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.96 KB | None | 0 0
  1.             if(nitroFSInit()) {
  2.                 // NitroFS ok
  3.                 // Si es correcto, cambia al ROOT del NitroFS
  4.                 chdir("nitro:/");
  5.             } else {
  6.                 // Fallo. Deten el programa
  7.                 consoleDemoInit();  // Inicializa la consola de texto
  8.                 if (NF_GetLanguage() == 5) {
  9.                     iprintf("Error iniciando NitroFS.\n");
  10.                     iprintf("Programa detenido.\n\n");
  11.                     iprintf("Verifica que tu flashcard\n");
  12.                     iprintf("es compatible con Argv.\n");
  13.                     iprintf("Si no lo es, intenta usar el\n");
  14.                     iprintf("Homebrew Menu para ejecutarla.\n\n");
  15.                 } else {
  16.                     iprintf("NitroFS Init Error.\n");
  17.                     iprintf("Abnormal termination.\n\n");
  18.                     iprintf("Check if your flashcard is\n");
  19.                     iprintf("Argv compatible.\n");
  20.                     iprintf("If not, try to launch the ROM\n");
  21.                     iprintf("using the Homebrew Menu.\n\n");
  22.                 }
  23.                 iprintf("http://sourceforge.net/projects/devkitpro/files/hbmenu/");
  24.                 // Bucle infinito. Fin del programa
  25.                 while(1) {
  26.                     swiWaitForVBlank();
  27.                 }
  28.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement