Fixed compilation error in UpdateDebris()

This commit is contained in:
MontyTRC89 2021-08-03 05:40:25 +02:00
parent 861f147390
commit 0204970a8d
2 changed files with 2 additions and 2 deletions

View file

@ -117,7 +117,7 @@ void DisableDebris()
void UpdateDebris()
{
for (auto& deb = DebrisFragments.begin(); deb != DebrisFragments.end(); deb++)
for (auto deb = DebrisFragments.begin(); deb != DebrisFragments.end(); deb++)
{
if (deb->active)
{

View file

@ -11,7 +11,7 @@
<LocalDebuggerCommandArguments>/debug</LocalDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LocalDebuggerCommand>TombEngine.exe</LocalDebuggerCommand>
<LocalDebuggerCommand>TR5Main.exe</LocalDebuggerCommand>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
<LocalDebuggerWorkingDirectory>$(ProjectDir)..\Build\</LocalDebuggerWorkingDirectory>
</PropertyGroup>