Browse Source

修复魔盒FISManager Init错误

felix 1 year ago
parent
commit
090dd3bbf9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Vinno.FIS.Sonopost/Managers/FISManager.cs

+ 1 - 1
Vinno.FIS.Sonopost/Managers/FISManager.cs

@@ -84,7 +84,7 @@ namespace Vinno.FIS.Sonopost.Managers
                 Logger.WriteLineWarn($"Model Type is Null From Setting File,Will Use SP-0002 Instead.");
                 modelType = "SP-0002";
             }
-            _ultrasoundMachineInfo = new UltrasoundMachineInfo("", "", true, string.Empty, modelType, currentVersion, "1.0.0.0", cpuName, (int)SystemParameters.PrimaryScreenWidth, (int)SystemParameters.PrimaryScreenHeight, SonopostConstants.DataFolder, SonopostConstants.DataFolder, FISLoginSourceV2.PC, FISPlatform.Windows, "sonopost");
+            _ultrasoundMachineInfo = new UltrasoundMachineInfo("", "", true, string.Empty, modelType, currentVersion, "1.0.0.0", cpuName, (int)SystemParameters.PrimaryScreenWidth, (int)SystemParameters.PrimaryScreenHeight, SonopostConstants.DataFolder, SonopostConstants.DataFolder, FISLoginSourceV2.PC, FISPlatform.Windows, false, "sonopost");
             FISIMPL.FISIMPL.SetUltrasoundMachineInfo(_ultrasoundMachineInfo);
             FISIMPL.FISIMPL.Start(machineId, FISPlatform.Windows, false);
         }