From 8dc59fb722020e11d81b0cd537872a0de2a59388 Mon Sep 17 00:00:00 2001 From: zaphod77 Date: Tue, 24 Dec 2024 11:40:06 -0600 Subject: [PATCH] Fix another bug in g2 grading. another typo. combo should have been combo2, like all the other nearby lines. --- src/script/grade.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/grade.c b/src/script/grade.c index 88756e7..ece244e 100644 --- a/src/script/grade.c +++ b/src/script/grade.c @@ -230,7 +230,7 @@ void GradeUp2(int32_t player, int32_t lines){ } }else if(((combo[player]-1)!=0)&&(combo2[player]>=3)&&(combo2[player]<5)){//3コンボ以上 if(lines == 1){ //コンボ主体では段位ポイントが上がりにくく C7T7.1 - i[player] = (i[player] * 21*(combo[player] - 1)) /20;//1.05倍 + i[player] = (i[player] * 21*(combo2[player] - 1)) /20;//1.05倍 fixed typo }else if(lines == 2){ i[player] = (i[player] * 11 * (combo2[player] - 1)) / 10;//1.1倍 }else if(lines == 3){