diff --git a/stepmania/Themes/default/Languages/en.ini b/stepmania/Themes/default/Languages/en.ini index 75d9278ead..d3341c6cd6 100644 --- a/stepmania/Themes/default/Languages/en.ini +++ b/stepmania/Themes/default/Languages/en.ini @@ -674,8 +674,8 @@ Chaos=Chaos Characters=Characters Choose=Choose Clear Bookkeeping Data=Clear Bookkeeping Data -Clear Machine Edits=Clear Machine Edits -Clear Machine Stats=Clear Machine Scores +Clear Profile Edits=Clear Profile Edits +Clear Profile Stats=Clear Profile Scores Clear area=Clear area Coin Options=Coin Options CoinMode=Coin\nMode diff --git a/stepmania/src/ScreenDebugOverlay.cpp b/stepmania/src/ScreenDebugOverlay.cpp index 104906d55b..23ee61ae00 100644 --- a/stepmania/src/ScreenDebugOverlay.cpp +++ b/stepmania/src/ScreenDebugOverlay.cpp @@ -746,7 +746,7 @@ class DebugLineClearProfileStats : public IDebugLine virtual RString GetPageName() const { return "Profiles"; } virtual void DoAndMakeSystemMessage( RString &sMessageOut ) { - Profile* pProfile = PROFILEMAN->GetMachineProfile(); + Profile *pProfile = PROFILEMAN->GetProfile( g_ProfileSlot ); pProfile->ClearStats(); IDebugLine::DoAndMakeSystemMessage( sMessageOut ); }