--- a/oss-v4.1-build1051-src-gpl/cmd/ossxmix/ossxmix.c 2008-12-27 09:01:57.000000000 +0100 +++ b/oss-v4.1-build1051-src-gpl/cmd/ossxmix/ossxmix.c 2009-01-01 18:19:36.000000000 +0100 @@ -93,6 +93,7 @@ static int load_all_devs = 1; static int background = 0; static int show_status_icon = 1; +static int firstcall = 0; int width_adjust = 0; @@ -968,7 +969,7 @@ if (!show_all) break; #if OSS_VERSION >= 0x040090 - if (thisrec->update_counter == 0) + if ((thisrec->update_counter == 0) && (firstcall < 0)) break; #endif @@ -1441,6 +1442,8 @@ free (extnames); free (widgets); free (orient); + if ((firstcall > 0) && (++firstcall == mixer_num)) + firstcall = -1; return rootwid; }