Skip to content

Commit

Permalink
Last debug on this
Browse files Browse the repository at this point in the history
  • Loading branch information
Miner34dev committed Apr 28, 2024
1 parent 276272d commit fe9edbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/main/gfx/DustPool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ void DustPool::update()
}

const float speedFactor = (App::sim_state->getEnum<SimState>() == SimState::PAUSED) ? 0.f : App::GetGameContext()->GetActorManager()->GetSimulationSpeed();
if (!App::GetGameContext()->GetActorManager()->IsSimulationPaused())
if (App::GetGameContext()->GetActorManager()->IsSimulationPaused())
{
App::GetConsole()->putMessage(Console::CONSOLE_MSGTYPE_INFO, Console::CONSOLE_SYSTEM_NOTICE, "Particles should have stopped.");
}
Expand Down

0 comments on commit fe9edbd

Please sign in to comment.