Przeglądaj źródła

修复log找不到目录的bug

tanghai 8 lat temu
rodzic
commit
0b16e7bfaa
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      Unity/Assets/Scripts/Base/Log.cs

+ 1 - 1
Unity/Assets/Scripts/Base/Log.cs

@@ -18,7 +18,7 @@ namespace Model
 
 		static Log()
 		{
-			if (!Directory.Exists("../Logs"))
+			if (!Directory.Exists("./Logs"))
 			{
 				Directory.CreateDirectory("./Logs");
 			}