ref: 834e866bcff92a41f9a93aa2ae63a29cb9fb1559
parent: 9c0fddccda8707a686b1e6180cde9a6a5fe2bbcd
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Fri Sep 15 14:15:09 EDT 2023
doom: wait explicitly for convproc to exit before running getwindow on resize
--- a/sys/src/games/doom/i_video.c
+++ b/sys/src/games/doom/i_video.c
@@ -141,7 +141,7 @@
{
if(resized){
if(conv != nil){
- chanclose(conv);
+ sendp(conv, nil);
conv = nil;
}
resized = 0;
--
⑨