problema al cargar un juego

hola buenas creando una aplicacion y metido el codigo para activar el lector de la wii me falla una cosa que es la siguiente saber como cambiar el codigo del video ya que solo carga juego de cube y quiero cambiarlo para que cargue juegos de wii os dejo el codigo por si me echais una mano


static void Initialise (void)
{
VIDEO_Init (); /*** ALWAYS CALL FIRST IN ANY LIBOGC PROJECT!
Not only does it initialise the video
subsystem, but also sets up the ogc os
***/

PAD_Init (); /*** Initialise pads for input ***/

/*** Try to match the current video display mode
using the higher resolution interlaced.

So NTSC/MPAL gives a display area of 640x480
PAL display area is 640x528
***/
switch (VIDEO_GetCurrentTvMode (TVPal528IntDf))
{
case VI_NTSC:
vmode = &TVNtsc480IntDf;
break;

case VI_PAL:
vmode = &TVPal528IntDf;
break;

case VI_MPAL:
vmode = &TVMpal480IntDf;
break;

default:
vmode = &TVNtsc480IntDf;
break;
}
/*** Let libogc configure the mode ***/
VIDEO_Configure (vmode);

/*** Now configure the framebuffer.
Really a framebuffer is just a chunk of memory
to hold the display line by line.
***/

xfb[0] = (u32 *) MEM_K0_TO_K1 (SYS_AllocateFramebuffer (vmode));
/*** I prefer also to have a second buffer for double-buffering.
This is not needed for the console demo.
***/
xfb[1] = (u32 *) MEM_K0_TO_K1 (SYS_AllocateFramebuffer (vmode));
/*** Define a console ***/
/* x y w h */
console_init (xfb[0], 50, 180, vmode->fbWidth,480, vmode->fbWidth * 2);
/*** Clear framebuffer to black ***/
VIDEO_ClearFrameBuffer (vmode, xfb[0], COLOR_BLACK);
VIDEO_ClearFrameBuffer (vmode, xfb[1], COLOR_BLACK);

/*** Set the framebuffer to be displayed at next VBlank ***/
VIDEO_SetNextFramebuffer (xfb[0]);

/*** Get the PAD status updated by libogc ***/
VIDEO_SetPostRetraceCallback (ProperScanPADS);
VIDEO_SetBlack (0);

/*** Update the video for next vblank ***/
VIDEO_Flush ();

VIDEO_WaitVSync (); /*** Wait for VBL ***/
if (vmode->viTVMode & VI_NON_INTERLACE)
VIDEO_WaitVSync ();
}

void wait_press_A()
{
printf("Press A to continue..\n");
while((PAD_ButtonsHeld(0) & PAD_BUTTON_A));
while(!(PAD_ButtonsHeld(0) & PAD_BUTTON_A));
}
No tengo ni idea, pero creo que te sería más facil conseguir respuestas cambiando el título del hilo por algo más relacionado (p. e. [PROGRAMACIÓN] Problema al lanzar juegos desde app), espero que te ayude.
zeldamania escribió:hola buenas creando una aplicacion y metido el codigo para activar el lector de la wii me falla una cosa que es la siguiente saber como cambiar el codigo del video ya que solo carga juego de cube y quiero cambiarlo para que cargue juegos de wii os dejo el codigo por si me echais una mano
}


Es dificil que alguien pueda responderte si no te explicas bien de lo que quieres hacer con este código, por otro lado usar las librerias de lectura de dvd libdi no tiene nada que ver con el cambio de modo de video, ademas cambiar el modo de video no te sirve de nada para alternar entre leer juegos del Cubo o de la Wii
2 respuestas