aboutsummaryrefslogtreecommitdiff
path: root/musw.c
diff options
context:
space:
mode:
Diffstat (limited to 'musw.c')
-rw-r--r--musw.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/musw.c b/musw.c
index fd8c8ac..e4367ea 100644
--- a/musw.c
+++ b/musw.c
@@ -697,7 +697,7 @@ soundproc(void *)
}
void
-threadshow(void *)
+runshow(void)
{
uvlong then, now, frametime, lastpktsent;
Vfx *vfx;
@@ -834,6 +834,5 @@ threadmain(int argc, char *argv[])
threadcreate(threadnetppu, nil, mainstacksize);
threadcreate(threadnetsend, &fd, mainstacksize);
threadcreate(threadresize, mc, mainstacksize);
- threadcreate(threadshow, nil, mainstacksize);
- yield();
+ runshow();
}