Mercurial > audlegacy
comparison src/audacious/visualization.c @ 3020:6065d70cb790 trunk
replace old Vis with UiVis
author | Tomasz Mon <desowin@gmail.com> |
---|---|
date | Tue, 10 Jul 2007 11:32:54 +0200 |
parents | 13591e28d89e |
children | 34f37c59e87b |
comparison
equal
deleted
inserted
replaced
3017:80cf8f8b0651 | 3020:6065d70cb790 |
---|---|
284 if (!pcm_data || nch < 1) { | 284 if (!pcm_data || nch < 1) { |
285 if (cfg.vis_type != VIS_OFF) { | 285 if (cfg.vis_type != VIS_OFF) { |
286 if (cfg.player_shaded && cfg.player_visible) | 286 if (cfg.player_shaded && cfg.player_visible) |
287 svis_timeout_func(mainwin_svis, NULL); | 287 svis_timeout_func(mainwin_svis, NULL); |
288 else | 288 else |
289 vis_timeout_func(mainwin_vis, NULL); | 289 ui_vis_timeout_func(mainwin_vis, NULL); |
290 } | 290 } |
291 return; | 291 return; |
292 } | 292 } |
293 | 293 |
294 while (node) { | 294 while (node) { |
464 } | 464 } |
465 } | 465 } |
466 if (cfg.player_shaded && cfg.player_visible) | 466 if (cfg.player_shaded && cfg.player_visible) |
467 svis_timeout_func(mainwin_svis, intern_vis_data); | 467 svis_timeout_func(mainwin_svis, intern_vis_data); |
468 else | 468 else |
469 vis_timeout_func(mainwin_vis, intern_vis_data); | 469 ui_vis_timeout_func(mainwin_vis, intern_vis_data); |
470 } | 470 } |