Skip to content

Commit 5ad282a

Browse files
committed
修复编译错误
1 parent f01ca82 commit 5ad282a

File tree

13 files changed

+51
-1608
lines changed

13 files changed

+51
-1608
lines changed

Assets/Script/Core/Develop/DevelopReplayManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -436,13 +436,13 @@ static void ShowLogList()
436436

437437
for (int i = 0; i < FileNameList.Length; i++)
438438
{
439-
if (GUILayout.Button(FileNameList[i]))
439+
LogName = FileNameList[i];
440+
if (GUILayout.Button(LogName))
440441
{
441442
isShowLog = true;
442443
scrollPos = Vector2.zero;
443444
showContent = LogOutPutThread.LoadLogContent(FileNameList[i]);
444445
LogPath = LogOutPutThread.GetPath(FileNameList[i]);
445-
LogName = FileNameList[i];
446446
}
447447
}
448448

Assets/Script/Core/Editor/Data/DataConfigUtils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ public static void CreatDataCSharpFile(string dataName, DataTable data)
231231
//type
232232
List<string> type = new List<string>(data.m_tableTypes.Keys);
233233

234-
Debug.Log("type count: " + type.Count);
234+
//Debug.Log("type count: " + type.Count);
235235

236236
if (type.Count > 0)
237237
{

0 commit comments

Comments
 (0)