buenas
el error que tengoe s que en las nuevas palib cuando pongo sonido me salta error
main.c
c:/devkitpro/palib/juego/main.c In function 'MoveMario':
c:/devkitpro/palib/juego/main.c:1394: warning: implicit declaration of fuction 'PA_InitSound'
c:/devkitpro/palib/juego/main.c:1422:28:error: macro "PA_PlaySimpleSound" passed 2 arguments, but take just 1
c:/devkitpro/palib/juego/main.c:1422: error: 'PA_PlaySimpleSound' undeclared <first use in this fuction>
c:/devkitpro/palib/juego/main.c:1422: error: <Each undeclared indentifier is reported only once
c:/devkitpro/palib/juego/main.c:1422: error: for each fuction it appears in.>
make[1]:*** [main.o] Error 1
make: *** [build] Error 2
ayuda
No sé de las nuevas PAlib, pero intenta esto:
Cambia PA_InitSound(); por:
AS_Init(AS_MODE_SURROUND | AS_MODE_16CH);
AS_SetDefaultSettings(AS_PCM_8BIT, 11025, AS_SURROUND);
Y en PA_PlaySimpleSound pon solo y entre comillas, el nombre del sonido, ejemplo, "resuelto".
ahora me sale esto
ahora me sale esto
c:/devkitpro/palib/juego/main.c:1422:30:error: macro "PA_PlaySimpleSound" passed 2 arguments, but take just 1
c:/devkitpro/palib/juego/main.c:1422: error: 'PA_PlaySimpleSound' undeclared <first use in this fuction>
c:/devkitpro/palib/juego/main.c:1422: error: <Each undeclared indentifier is reported only once
c:/devkitpro/palib/juego/main.c:1422: error: for each fuction it appears in.>
make[1]:*** [main.o] Error 1
make: *** [build] Error 2
Be Libre my Friend.
Prueba
Prueba con
AS_SoundQuickPlay(elsonidoquequieras);
si ya lo se lo vi en el
si ya lo se lo vi en el tutorial de palib-dev
se me olvido postearlo
gracias