ソースを参照

improve the detection of calling locations with parameters

rachels 3 年 前
コミット
e70ad5847f

BIN
QSP/qsp-analyser/QSP_Analyser.exe


+ 1 - 1
QSP/qsp-analyser/QSP_Analyser/Properties/AssemblyInfo.cs

@@ -33,4 +33,4 @@ using System.Runtime.InteropServices;
 // by using the '*' as shown below:
 // [assembly: AssemblyVersion("1.0.*")]
 [assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.3.1.1")]
+[assembly: AssemblyFileVersion("1.3.1.2")]

+ 1 - 1
QSP/qsp-analyser/QSP_Analyser/QSPGameCode.cs

@@ -1249,7 +1249,7 @@ namespace Analyser
             }
             count = args.Count;
 
-            if ((count == 1) && types[0])
+            if ((count >= 1) && types[0])
             {
                 //Отмечаем в списке явные ссылки на локации
                 if ((code == (int)QspStatementType.GoSub) || (code == (int)QspStatementType.GoTo) ||

+ 2 - 2
QSP/qsp-analyser/QSP_Analyser/QSP_Analyser.csproj

@@ -35,8 +35,8 @@
     <UpdatePeriodically>false</UpdatePeriodically>
     <UpdateRequired>false</UpdateRequired>
     <MapFileExtensions>true</MapFileExtensions>
-    <ApplicationRevision>0</ApplicationRevision>
-    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
+    <ApplicationRevision>2</ApplicationRevision>
+    <ApplicationVersion>1.3.1.%2a</ApplicationVersion>
     <UseApplicationTrust>false</UseApplicationTrust>
     <PublishWizardCompleted>true</PublishWizardCompleted>
     <BootstrapperEnabled>true</BootstrapperEnabled>