@@ -25,7 +25,7 @@ namespace PokemonRSE{
2525AudioStarterReset_Descriptor::AudioStarterReset_Descriptor ()
2626 : SingleSwitchProgramDescriptor(
2727 " PokemonRSE:AudioStarterReset" ,
28- " Pokemon RSE" , " [RS] Starter Reset" ,
28+ " Pokemon RSE" , " Starter Reset (Ruby/Sapphire) " ,
2929 " ComputerControl/blob/master/Wiki/Programs/PokemonRSE/AudioStarterReset.md" ,
3030 " Soft reset for a shiny starter. Ruby and Sapphire only." ,
3131 FeedbackType::VIDEO_AUDIO_GBA,
@@ -92,7 +92,7 @@ void AudioStarterReset::program(SingleSwitchProgramEnvironment& env, BotBaseCont
9292 /*
9393 * Settings: Text Speed fast.
9494 * Full screen, no filter? The device I'm using to test has similar looking output, but I don't have switch online+.
95- * If on a retro handheld, make sure the screen matches that of NSO+ and that there is an overlay to avoid the black border check .
95+ * If on a retro handheld, make sure the screen matches that of NSO+.
9696 *
9797 * Setup: Stand in front of the Professor's bag and save the game.
9898 *
@@ -157,7 +157,7 @@ void AudioStarterReset::program(SingleSwitchProgramEnvironment& env, BotBaseCont
157157 env.log (" Shiny Poochyena detected!" );
158158 stats.poochyena ++;
159159 env.update_stats ();
160- send_program_status_notification (env, NOTIFICATION_SHINY_POOCH, " Shiny Poochyena found. " , env.console .video ().snapshot (), false );
160+ send_program_notification (env, NOTIFICATION_SHINY_POOCH, COLOR_YELLOW, " Shiny Poochyena found" , {}, " " , env.console .video ().snapshot (), true );
161161 }
162162 else {
163163 env.log (" Poochyena is not shiny." );
@@ -196,7 +196,7 @@ void AudioStarterReset::program(SingleSwitchProgramEnvironment& env, BotBaseCont
196196 env.log (" Shiny starter detected!" );
197197 stats.shinystarter ++;
198198 env.update_stats ();
199- send_program_status_notification (env, NOTIFICATION_SHINY_STARTER, " Shiny starter found!" , env.console .video ().snapshot (), true );
199+ send_program_notification (env, NOTIFICATION_SHINY_STARTER, COLOR_YELLOW, " Shiny starter found!" , {}, " " , env.console .video ().snapshot (), true );
200200 shiny_starter = true ;
201201 }
202202 else {
0 commit comments