Skip to content

Commit

Permalink
Fix issue #33 where max rank for a song in the Song Selection screen …
Browse files Browse the repository at this point in the history
…is incorrect and does not correspond to the max skill.
  • Loading branch information
ericpignet committed Aug 11, 2020
1 parent fef0773 commit 0a7e67d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ public void t選択曲が変更された()
}
else if (CDTXMania.ConfigIni.nSkillMode == 1)
{
this.n現在選択中の曲の最高ランク難易度毎[j][i] = (DTXMania.CScoreIni.tランク値を計算して返す(0, c曲リストノード.arスコア[j].譜面情報.最大スキル[i]) == (int)DTXMania.CScoreIni.ERANK.S && DTXMania.CScoreIni.tランク値を計算して返す(0, c曲リストノード.arスコア[j].譜面情報.最大スキル[i]) >= 95 ? DTXMania.CScoreIni.tランク値計算して返す(0, cスコア.譜面情報.最大スキル[i]) : c曲リストノード.arスコア[j].譜面情報.最大ランク[i]);
// Fix github.com/limyz/DTXmaniaXG/issues/33
//this.n現在選択中の曲の最高ランク難易度毎[j][i] = (DTXMania.CScoreIni.tランク値を計算して返す(0, c曲リストノード.arスコア[j].譜面情報.最大スキル[i]) == (int)DTXMania.CScoreIni.ERANK.S && DTXMania.CScoreIni.tランク値を計算して返す(0, c曲リストノード.arスコア[j].譜面情報.最大スキル[i]) >= 95 ? DTXMania.CScoreIni.tランク値を計算して返す(0, cスコア.譜面情報.最大スキル[i]) : c曲リストノード.arスコア[j].譜面情報.最大ランク[i]);
this.n現在選択中の曲の最高ランク難易度毎[j][i] = DTXMania.CScoreIni.tランク値を計算して返す(0, c曲リストノード.arスコア[j].譜面情報.最大スキル[i]);
}

this.db現在選択中の曲の最高スキル値難易度毎[j][i] = c曲リストノード.arスコア[j].譜面情報.最大スキル[i];
Expand Down

0 comments on commit 0a7e67d

Please sign in to comment.