Refactor windows and web compiling

This commit is contained in:
Krzosa Karol
2025-11-27 22:45:10 +01:00
parent 781c2dc53c
commit e9e8751981
24 changed files with 104 additions and 555 deletions

View File

@@ -20,7 +20,7 @@ void AddText(String string) {
void Wait(mco_coro *co) {
Add(&EventPlayback, {111});
for (Event *event = Yield(co); event->kind != 111; event = Yield(co)) {
for (Event *event = CoYield(co); event->kind != 111; event = CoYield(co)) {
}
}