mirror of
https://github.com/RocketRobz/SavvyManager.git
synced 2025-06-19 01:25:35 -04:00
Add Rocket Robz logo jingle
Style Savvy soundfont variant
This commit is contained in:
parent
ce0eac8c80
commit
fe1153353d
BIN
romfs/sounds/rocketRobz.wav
Normal file
BIN
romfs/sounds/rocketRobz.wav
Normal file
Binary file not shown.
@ -35,7 +35,7 @@ int titleSelection = 0;
|
|||||||
|
|
||||||
sound *music = NULL;
|
sound *music = NULL;
|
||||||
sound *music_loop = NULL;
|
sound *music_loop = NULL;
|
||||||
//sound *mus_logos = NULL;
|
sound *mus_logos = NULL;
|
||||||
sound *sfx_select = NULL;
|
sound *sfx_select = NULL;
|
||||||
sound *sfx_back = NULL;
|
sound *sfx_back = NULL;
|
||||||
sound *sfx_highlight = NULL;
|
sound *sfx_highlight = NULL;
|
||||||
@ -93,11 +93,11 @@ void Play_Music(void) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*void musLogos(void) {
|
void musLogos(void) {
|
||||||
if (!dspfirmfound) return;
|
if (!dspfirmfound) return;
|
||||||
mus_logos->stop();
|
mus_logos->stop();
|
||||||
mus_logos->play();
|
mus_logos->play();
|
||||||
}*/
|
}
|
||||||
|
|
||||||
void sndSelect(void) {
|
void sndSelect(void) {
|
||||||
if (!dspfirmfound) return;
|
if (!dspfirmfound) return;
|
||||||
@ -246,7 +246,7 @@ int main()
|
|||||||
|
|
||||||
// Load the sound effects if DSP is available.
|
// Load the sound effects if DSP is available.
|
||||||
if (dspfirmfound) {
|
if (dspfirmfound) {
|
||||||
//mus_logos = new sound("romfs:/sounds/logos.wav", 0, false);
|
mus_logos = new sound("romfs:/sounds/rocketRobz.wav", 0, false);
|
||||||
music = new sound("romfs:/sounds/music_start.wav", 0, false);
|
music = new sound("romfs:/sounds/music_start.wav", 0, false);
|
||||||
music_loop = new sound("romfs:/sounds/music_loop.wav", 1, true);
|
music_loop = new sound("romfs:/sounds/music_loop.wav", 1, true);
|
||||||
sfx_select = new sound("romfs:/sounds/select.wav", 2, false);
|
sfx_select = new sound("romfs:/sounds/select.wav", 2, false);
|
||||||
@ -550,7 +550,7 @@ int main()
|
|||||||
Gui::setScreen(std::make_unique<RocketRobz>(), false); // Set screen to RocketRobz's screen.
|
Gui::setScreen(std::make_unique<RocketRobz>(), false); // Set screen to RocketRobz's screen.
|
||||||
svcCreateEvent(&threadRequest,(ResetType)0);
|
svcCreateEvent(&threadRequest,(ResetType)0);
|
||||||
createThread((ThreadFunc)controlThread);
|
createThread((ThreadFunc)controlThread);
|
||||||
//musLogos();
|
musLogos();
|
||||||
|
|
||||||
// Loop as long as the status is not exit
|
// Loop as long as the status is not exit
|
||||||
while(aptMainLoop()) {
|
while(aptMainLoop()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user