]> git.tdb.fi Git - libs/game.git/blobdiff - source/game/stage.cpp
Implement base support for buffered components
[libs/game.git] / source / game / stage.cpp
index 5663a71fadf8b36e1db21267724cf3d27e9530c2..43446bd9d8e7af9ba6d03f5fd13d9a49d2e72d42 100644 (file)
@@ -60,7 +60,10 @@ void Stage::tick(Time::TimeDelta dt)
                AccessGuard::BlockForScope _block;;
 #endif
                for(const auto &s: systems)
+               {
+                       System::Activator act(*s);
                        s->tick(dt);
+               }
        }
 
        for(const auto &s: systems)