提高粒子特效

This commit is contained in:
2026-04-26 13:55:55 +08:00
parent 96976d7b99
commit cc69287344
4 changed files with 130 additions and 70 deletions
+6 -17
View File
@@ -1251,24 +1251,13 @@ void TDrawScreen(HDC hdc, HWND hWnd)
{
_stprintf_s(upgradeSummary + lstrlen(upgradeSummary), 512 - lstrlen(upgradeSummary), _T("\u6210\u957f\u6838\u5fc3 Lv.1\r\n"));
}
int tunedPieceCount = 0;
for (int pieceType = 0; pieceType < 7; pieceType++)
if (rogueStats.pieceTuningLevels[0] > 0)
{
if (rogueStats.pieceTuningLevels[pieceType] > 0)
{
tunedPieceCount++;
_stprintf_s(
upgradeSummary + lstrlen(upgradeSummary),
512 - lstrlen(upgradeSummary),
_T("%s \u65b9\u5757\u6539\u9020 Lv.%d\r\n"),
(pieceType == 0 ? _T("I") :
pieceType == 1 ? _T("T") :
pieceType == 2 ? _T("L") :
pieceType == 3 ? _T("J") :
pieceType == 4 ? _T("O") :
pieceType == 5 ? _T("S") : _T("Z")),
rogueStats.pieceTuningLevels[pieceType]);
}
_stprintf_s(
upgradeSummary + lstrlen(upgradeSummary),
512 - lstrlen(upgradeSummary),
_T("I \u65b9\u5757\u6539\u9020 Lv.%d\r\n"),
rogueStats.pieceTuningLevels[0]);
}
if (rogueStats.gamblerLevel > 0)
{