guodong 2 anni fa
parent
commit
6fb64cd241

+ 2 - 1
GameClient/Assets/Game/HotUpdate/Views/DressUp/PhotographSaveView.cs

@@ -67,7 +67,8 @@ namespace GFGGame
         {
             if(LocalCache.GetBool(GameConst.WRITE_EXTERNAL_STORAGE_FORBIDDEN, false))
             {
-                AlertSystem.Show("保存至本地需要使用存储权限,您已经禁止!请前往手机系统设置开启应用存储权限。");
+                AlertSystem.Show("保存至本地需要使用存储权限,您已经禁止!请前往手机系统设置开启应用存储权限。")
+                        .SetLeftButton(true, "知道了");
                 return;
             }
             //检查用户是否已授予对需要授权的设备资源或信息的访问权。

+ 1 - 1
GameClient/Assets/Game/Launcher/LauncherController.cs

@@ -95,7 +95,7 @@ namespace GFGGame
 
         private static void StartGame()
         {
-            LauncherView.Instance.SetDesc($"稍等片刻,精彩立刻呈现...");
+            LauncherView.Instance.SetDesc($"稍等片刻,精彩马上呈现...");
             HotUpdateCodeLoader.Instance.StartLoad();
         }