Lines 93-98
Link Here
|
93 |
static int load_all_devs = 1; |
93 |
static int load_all_devs = 1; |
94 |
static int background = 0; |
94 |
static int background = 0; |
95 |
static int show_status_icon = 1; |
95 |
static int show_status_icon = 1; |
|
|
96 |
static int firstcall = 0; |
96 |
|
97 |
|
97 |
int width_adjust = 0; |
98 |
int width_adjust = 0; |
98 |
|
99 |
|
Lines 968-974
Link Here
|
968 |
if (!show_all) |
969 |
if (!show_all) |
969 |
break; |
970 |
break; |
970 |
#if OSS_VERSION >= 0x040090 |
971 |
#if OSS_VERSION >= 0x040090 |
971 |
if (thisrec->update_counter == 0) |
972 |
if ((thisrec->update_counter == 0) && (firstcall < 0)) |
972 |
break; |
973 |
break; |
973 |
#endif |
974 |
#endif |
974 |
|
975 |
|
Lines 1441-1446
Link Here
|
1441 |
free (extnames); |
1442 |
free (extnames); |
1442 |
free (widgets); |
1443 |
free (widgets); |
1443 |
free (orient); |
1444 |
free (orient); |
|
|
1445 |
if ((firstcall > 0) && (++firstcall == mixer_num)) |
1446 |
firstcall = -1; |
1444 |
return rootwid; |
1447 |
return rootwid; |
1445 |
} |
1448 |
} |
1446 |
|
1449 |
|