Mercurial > audlegacy
diff audacious/widgets/svis.c @ 2229:37076c4efff7 trunk
[svn] - bmp_playback_* -> playback_* -- i knew something smelled rotten in widgetcore, hmm.
| author | nenolod |
|---|---|
| date | Sun, 31 Dec 2006 19:58:46 -0800 |
| parents | 60bd49189fde |
| children | d507d2c1f75c |
line wrap: on
line diff
--- a/audacious/widgets/svis.c Sun Dec 31 19:57:29 2006 -0800 +++ b/audacious/widgets/svis.c Sun Dec 31 19:58:46 2006 -0800 @@ -119,7 +119,7 @@ if (!cfg.doublesize) { memset(rgb_data, 0, SVIS_WIDTH * SVIS_HEIGHT); - if (cfg.vis_type == VIS_ANALYZER && !bmp_playback_get_paused() && bmp_playback_get_playing()){ + if (cfg.vis_type == VIS_ANALYZER && !playback_get_paused() && playback_get_playing()){ for(y=0; y < SVIS_HEIGHT; y++){ if (cfg.analyzer_type == ANALYZER_BARS){ for(x=0;x< SVIS_WIDTH; x++){ @@ -188,7 +188,7 @@ else { /* doublesize */ memset(rgb_data, 0, SVIS_WIDTH * 2 * SVIS_HEIGHT * 2); - if (cfg.vis_type == VIS_ANALYZER && !bmp_playback_get_paused() && bmp_playback_get_playing()){ + if (cfg.vis_type == VIS_ANALYZER && !playback_get_paused() && playback_get_playing()){ for(y=0; y < SVIS_HEIGHT; y++){ if (cfg.analyzer_type == ANALYZER_BARS){ for(x=0;x< SVIS_WIDTH; x++){
