This commit is contained in:
Lenheart 2025-10-14 17:12:59 +08:00
parent a91d3f3afd
commit cd14a0dd8e
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ class CumulativeRewardC extends LenheartNewUI_Windows {
local Second = ((NextStageTime - (CurrentStageTime + ((Clock() - RecvPackTime)))) / 1000);
local SecondStr = Second % 60;
local Minute = (Second - SecondStr) / 60;
local Str = "距离下一阶段还有 " + (Minute> 0 ? Minute.tostring() : "") + SecondStr.tostring() + " 秒";
local Str = "距离下一阶段还有 " + (Minute> 0 ? Minute.tostring() + " 分 " : "") + SecondStr.tostring() + " 秒";
L_sq_DrawCode(Str, X + 6, Y + 61, sq_RGBA(150, 150, 150, 255), 1, 1);
}
}