diff --git a/Themes/Til Death/BGAnimations/ScreenSelectMusic decorations/profile.lua b/Themes/Til Death/BGAnimations/ScreenSelectMusic decorations/profile.lua index 41ca768de5..a0edc660bb 100644 --- a/Themes/Til Death/BGAnimations/ScreenSelectMusic decorations/profile.lua +++ b/Themes/Til Death/BGAnimations/ScreenSelectMusic decorations/profile.lua @@ -34,6 +34,7 @@ local skillsets = { Speed = 0, Stam = 0, Jack = 0, + Technical = 0 } @@ -44,6 +45,7 @@ if GAMESTATE:IsPlayerEnabled(PLAYER_1) then skillsets.Speed = profile:GetPlayerSpeedRating() skillsets.Stam = profile:GetPlayerStamRating() skillsets.Jack = profile:GetPlayerJackRating() + skillsets.Technical = 1 end end diff --git a/extern/MinaCalc/MinaCalc.lib b/extern/MinaCalc/MinaCalc.lib index 2c6b4abe00..911a7c4bec 100644 Binary files a/extern/MinaCalc/MinaCalc.lib and b/extern/MinaCalc/MinaCalc.lib differ diff --git a/src/Profile.cpp b/src/Profile.cpp index 89bab6373c..4b075a9ccb 100644 --- a/src/Profile.cpp +++ b/src/Profile.cpp @@ -2118,7 +2118,7 @@ void Profile::ResetSSRs(bool OnlyOld) { HighScoresForASteps& zz = j->second; vector& hsv = zz.hsl.vHighScores; for (size_t i = 0; i < hsv.size(); i++) { - if (OnlyOld && hsv[i].GetSSRCalcVersion() == 1.f) + if (OnlyOld && hsv[i].GetSSRCalcVersion() == 1.1f) continue; hsv[i].SetSSR(0.f); @@ -2148,7 +2148,7 @@ void Profile::RecalculateSSRs(bool OnlyOld) { if (wifescore == 0.f || hsv[i].GetGrade() == Grade_Failed) hsv[i].SetSSR(0.f); else { - if (OnlyOld && hsv[i].GetSSRCalcVersion() == 1.f) + if (OnlyOld && hsv[i].GetSSRCalcVersion() == 1.1f) continue; Song* psong = id.ToSong();