UpdateCoroutines

This commit is contained in:
Krzosa Karol
2026-01-30 20:03:22 +01:00
parent 22a82db946
commit 2d1edd800a
2 changed files with 2 additions and 2 deletions

View File

@@ -38,7 +38,7 @@ void CoResume(CoData *dat) {
CoCurr = prev_curr; CoCurr = prev_curr;
} }
void CoUpdate(Event *event) { void UpdateCoroutines(Event *event) {
ProfileFunction(); ProfileFunction();
double start = GetTimeSeconds(); double start = GetTimeSeconds();
for (;ActiveCoroutines.len;) { for (;ActiveCoroutines.len;) {

View File

@@ -678,7 +678,7 @@ void Update(Event event) {
} }
UpdateProcesses(); UpdateProcesses();
CoUpdate(&event); UpdateCoroutines(&event);
For (Windows) { For (Windows) {