mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-10 12:36:45 +03:00
Fixed compilation error in UpdateDebris()
This commit is contained in:
parent
861f147390
commit
0204970a8d
2 changed files with 2 additions and 2 deletions
|
@ -117,7 +117,7 @@ void DisableDebris()
|
||||||
|
|
||||||
void UpdateDebris()
|
void UpdateDebris()
|
||||||
{
|
{
|
||||||
for (auto& deb = DebrisFragments.begin(); deb != DebrisFragments.end(); deb++)
|
for (auto deb = DebrisFragments.begin(); deb != DebrisFragments.end(); deb++)
|
||||||
{
|
{
|
||||||
if (deb->active)
|
if (deb->active)
|
||||||
{
|
{
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<LocalDebuggerCommandArguments>/debug</LocalDebuggerCommandArguments>
|
<LocalDebuggerCommandArguments>/debug</LocalDebuggerCommandArguments>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<LocalDebuggerCommand>TombEngine.exe</LocalDebuggerCommand>
|
<LocalDebuggerCommand>TR5Main.exe</LocalDebuggerCommand>
|
||||||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
|
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
|
||||||
<LocalDebuggerWorkingDirectory>$(ProjectDir)..\Build\</LocalDebuggerWorkingDirectory>
|
<LocalDebuggerWorkingDirectory>$(ProjectDir)..\Build\</LocalDebuggerWorkingDirectory>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue