fix!: remove references to context::collect

I forgor to do that earlier lol

Refs: #12
This commit is contained in:
2026-06-20 12:56:43 +02:00
parent f2294079a0
commit 3a2fa32ce1
2 changed files with 0 additions and 4 deletions
-2
View File
@@ -29,10 +29,8 @@ int main(void) {
static constexpr std::size_t FPC = 3; // Frames per collection
std::size_t count = 0;
while ((executor->flags() & furvm::executor_flags::Done) != furvm::executor_flags::Done) {
executor->step();
if ((++count % FPC) == 0) context->collect();
}
return 0;