big ngcft beta update
Some checks failed
ContinuousDelivery / windows (push) Waiting to run
ContinuousDelivery / release (push) Blocked by required conditions
ContinuousIntegration / macos (push) Waiting to run
ContinuousIntegration / windows (push) Waiting to run
ContinuousDelivery / linux-ubuntu (push) Failing after 2m10s
ContinuousIntegration / linux (push) Successful in 2m23s
ContinuousIntegration / android (push) Failing after 4m34s

This commit is contained in:
Green Sky 2024-07-08 18:13:24 +02:00
parent 894a2b60a6
commit 36b25b2dd4
No known key found for this signature in database
3 changed files with 4 additions and 4 deletions

@ -1 +1 @@
Subproject commit 613b1835929b7f74943585593c386746ef0433d9 Subproject commit e5681b4ad5c7f7e132852cf64315f7a4d0d80312

@ -1 +1 @@
Subproject commit 6b1bb50f169b3df6b7d2bde7b2f43543d98868f6 Subproject commit 17d2baf7365c3499172dc5afd71171cb3a138d99

View File

@ -73,8 +73,8 @@ SOLANA_PLUGIN_EXPORT void solana_plugin_stop(void) {
SOLANA_PLUGIN_EXPORT float solana_plugin_tick(float delta) { SOLANA_PLUGIN_EXPORT float solana_plugin_tick(float delta) {
const float ft_interval = g_ngcft1->iterate(delta); const float ft_interval = g_ngcft1->iterate(delta);
g_sha1_ngcft1->iterate(delta); const float sha_interval = g_sha1_ngcft1->iterate(delta);
return ft_interval; return std::min<float>(ft_interval, sha_interval);
} }
} // extern C } // extern C