From 29ae49221b050d8d3e67377f9c53dcde28f22fa6 Mon Sep 17 00:00:00 2001 From: zpc Date: Sun, 1 Dec 2024 14:14:41 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/CloudGaming/Code/CloudGaming.Code/Game/GameBLL.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CloudGaming/Code/CloudGaming.Code/Game/GameBLL.cs b/src/CloudGaming/Code/CloudGaming.Code/Game/GameBLL.cs index 9f4f62f..b66f06c 100644 --- a/src/CloudGaming/Code/CloudGaming.Code/Game/GameBLL.cs +++ b/src/CloudGaming/Code/CloudGaming.Code/Game/GameBLL.cs @@ -411,7 +411,7 @@ namespace CloudGaming.Code.Game foreach (var g in l) { gameListDtos.Add(new GameHistoryListDto(g, 0, ImageResStyle.小LOGO)); - if (gameListDtos.Count > 20) + if (gameListDtos.Count >= 20) { break; }