From c6498250b2916d8e12fea9815badfab7dede4052 Mon Sep 17 00:00:00 2001 From: Jonathan Payne Date: Fri, 14 Oct 2011 15:18:55 -0700 Subject: [PATCH] [default] hotkey to refresh noteskins without having to refresh everything --- src/StepMania.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/StepMania.cpp b/src/StepMania.cpp index def1d4ff86..27849a3c42 100644 --- a/src/StepMania.cpp +++ b/src/StepMania.cpp @@ -1289,8 +1289,9 @@ bool HandleGlobalInputs( const InputEventPlus &input ) { if( bIsShiftHeld && !bIsCtrlHeld ) { - // Shift+F2: refresh metrics and CodeDetector cache only + // Shift+F2: refresh metrics,noteskin cache and CodeDetector cache only THEME->ReloadMetrics(); + NOTESKIN->RefreshNoteSkinData( GAMESTATE->m_pCurGame ); CodeDetector::RefreshCacheItems(); SCREENMAN->SystemMessage( RELOADED_METRICS ); }