gui should really have higher priority then sound...

git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@753 423420c4-83ab-492f-b58f-81f9feb106b5
This commit is contained in:
Michael Gernoth 2004-08-23 11:28:23 +00:00
parent 5632b932bc
commit 3dbf5279c8

6
xwin.c
View File

@ -1445,13 +1445,13 @@ ui_select(int rdp_socket)
rdpdr_check_fds(&rfds, &wfds, (BOOL) False);
if (FD_ISSET(rdp_socket, &rfds))
return 1;
#ifdef WITH_RDPSND
if (g_dsp_busy && FD_ISSET(g_dsp_fd, &wfds))
wave_out_play();
#endif
if (FD_ISSET(rdp_socket, &rfds))
return 1;
}
}