diff options
author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-20 09:32:16 +0100 |
---|---|---|
committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-20 09:32:16 +0100 |
commit | f8019ae98fc7da1566779a3d567a9f0bbcfd7250 (patch) | |
tree | 19ec7982b6ef35f3b3c83714bc7db3397f80af95 /src/test/Profiling.cpp | |
parent | 1bb9c2ccf96b7d2e24929c693192b25885614df9 (diff) |
quick changes
Diffstat (limited to 'src/test/Profiling.cpp')
-rw-r--r-- | src/test/Profiling.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/Profiling.cpp b/src/test/Profiling.cpp index 0b2669f..cd8a40e 100644 --- a/src/test/Profiling.cpp +++ b/src/test/Profiling.cpp @@ -50,7 +50,7 @@ public: // Minimum amount to let test pass const int min_gameobject_count = 100; // Maximum amount to stop test - const int max_gameobject_count = 150; + const int max_gameobject_count = 3000; // Amount of times a test runs to calculate average const int average = 5; // Maximum duration to stop test @@ -61,6 +61,8 @@ public: ResourceManager resman{m}; ComponentManager mgr{m}; // Add system used for profling tests + EventManager evmgr{m}; + LoopTimerManager loopmgr{m}; CollisionSystem collision_sys{m}; PhysicsSystem physics_sys{m}; ParticleSystem particle_sys{m}; |