From 70b51d42f4052cdf56a97dd389e0b773313fc887 Mon Sep 17 00:00:00 2001 From: Nikolay Korolev Date: Wed, 15 Apr 2020 00:33:55 +0300 Subject: [PATCH 1/3] fixed crash --- src/control/Script.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/control/Script.cpp b/src/control/Script.cpp index ff89f0fc..1f085d32 100644 --- a/src/control/Script.cpp +++ b/src/control/Script.cpp @@ -8921,6 +8921,7 @@ int8 CRunningScript::ProcessCommands1000To1099(int32 command) UpdateCompareFlag(CCredits::AreCreditsDone()); return 0; case COMMAND_CREATE_SINGLE_PARTICLE: + CollectParameters(&m_nIp, 8); CParticle::AddParticle((tParticleType)ScriptParams[0], *(CVector*)&ScriptParams[1], *(CVector*)&ScriptParams[4], nil, *(float*)&ScriptParams[7], 0, 0, 0, 0); return 0; From db11155a49c18419e32978387c4fa124a96b7afc Mon Sep 17 00:00:00 2001 From: Filip Gawin Date: Wed, 15 Apr 2020 00:56:02 +0200 Subject: [PATCH 2/3] Collect pdb file on CI --- .appveyor.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.appveyor.yml b/.appveyor.yml index a5b44461..41ada399 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -43,3 +43,5 @@ after_build: artifacts: - path: bin/%CONFIGURATION%/re3.dll name: re3.dll +- path: bin/%CONFIGURATION%/re3.pdb + name: re3.pdb From 25841cb9b3996451213c3bf353fc1bfb8f5a5f4b Mon Sep 17 00:00:00 2001 From: Filip Gawin Date: Wed, 15 Apr 2020 00:57:45 +0200 Subject: [PATCH 3/3] Update premake5.lua --- premake5.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/premake5.lua b/premake5.lua index 4ec2eca1..173fe3e4 100644 --- a/premake5.lua +++ b/premake5.lua @@ -94,13 +94,14 @@ project "re3" filter "configurations:Debug" defines { "DEBUG" } staticruntime "on" - symbols "On" + symbols "Full" setpaths("$(GTA_III_RE_DIR)/", "gta3.exe", "plugins/") filter "configurations:Release" defines { "NDEBUG" } optimize "On" staticruntime "on" + symbols "Full" setpaths("$(GTA_III_RE_DIR)/", "gta3.exe", "plugins/") filter "configurations:ReleaseFH"