diff --git a/stepmania/Themes/default/BGAnimations/ScreenSelectMusic decorations/default.lua b/stepmania/Themes/default/BGAnimations/ScreenSelectMusic decorations/default.lua index 9ad9cab4b0..efd7ac83d7 100644 --- a/stepmania/Themes/default/BGAnimations/ScreenSelectMusic decorations/default.lua +++ b/stepmania/Themes/default/BGAnimations/ScreenSelectMusic decorations/default.lua @@ -213,6 +213,7 @@ t[#t+1] = LoadFont("_regra Bold 16px") .. { end; CurrentSongChangedMessageCommand=cmd(playcommand,"Set"); CurrentCourseChangedMessageCommand=cmd(playcommand,"Set"); + DisplayLanguageChangedMessageCommand=cmd(playcommand,"Set"); }; t[#t+1] = LoadFont("_regra Bold 16px") .. { InitCommand=cmd(horizalign,right;x,SCREEN_CENTER_X+224;y,SCREEN_CENTER_Y-6;settext,"xxxx";shadowlengthx,0;shadowlengthy,2;shadowcolor,color("#000000");); diff --git a/stepmania/src/ScreenSelectMusic.cpp b/stepmania/src/ScreenSelectMusic.cpp index f9997898f2..a8fdef1ef7 100644 --- a/stepmania/src/ScreenSelectMusic.cpp +++ b/stepmania/src/ScreenSelectMusic.cpp @@ -372,7 +372,7 @@ void ScreenSelectMusic::Input( const InputEventPlus &input ) if( input.type != IET_FIRST_PRESS ) return; PREFSMAN->m_bShowNativeLanguage.Set( !PREFSMAN->m_bShowNativeLanguage ); - MESSAGEMAN->Broadcast( "ChangedLanguageDisplay" ); + MESSAGEMAN->Broadcast( "DisplayLanguageChanged" ); m_MusicWheel.RebuildWheelItems(); return; }